package com.yeshi.makemoney.app.service.query.goldcorn;
|
|
import com.yeshi.makemoney.app.entity.goldcorn.GoldCornGetType;
|
import com.yeshi.makemoney.app.service.query.BaseQuery;
|
|
import java.util.List;
|
|
public class GoldCornGetRecordQuery extends BaseQuery {
|
private GoldCornGetType type;
|
private Long uid;
|
|
private String day;
|
|
private List<String> dayList;
|
|
private Boolean doubles;
|
|
public GoldCornGetType getType() {
|
return type;
|
}
|
|
public void setType(GoldCornGetType type) {
|
this.type = type;
|
}
|
|
public Long getUid() {
|
return uid;
|
}
|
|
public void setUid(Long uid) {
|
this.uid = uid;
|
}
|
|
public String getDay() {
|
return day;
|
}
|
|
public void setDay(String day) {
|
this.day = day;
|
}
|
|
public List<String> getDayList() {
|
return dayList;
|
}
|
|
public void setDayList(List<String> dayList) {
|
this.dayList = dayList;
|
}
|
|
public Boolean getDoubles() {
|
return doubles;
|
}
|
|
public void setDoubles(Boolean doubles) {
|
this.doubles = doubles;
|
}
|
}
|