package com.yeshi.makemoney.app.service.query.goldcorn;
|
|
import com.yeshi.makemoney.app.entity.goldcorn.GoldCornConsumeType;
|
import com.yeshi.makemoney.app.service.query.BaseQuery;
|
|
public class GoldCornConsumeRecordQuery extends BaseQuery {
|
|
|
private GoldCornConsumeType type;
|
|
private Long uid;
|
|
private String eventId;
|
|
|
public GoldCornConsumeType getType() {
|
return type;
|
}
|
|
public void setType(GoldCornConsumeType type) {
|
this.type = type;
|
}
|
|
public Long getUid() {
|
return uid;
|
}
|
|
public void setUid(Long uid) {
|
this.uid = uid;
|
}
|
|
public String getEventId() {
|
return eventId;
|
}
|
|
public void setEventId(String eventId) {
|
this.eventId = eventId;
|
}
|
}
|