admin
2022-04-29 6cc97918a5a42e37a3c3867cc5b78a0b9fd43a24
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
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;
    }
}