admin
2022-10-28 0e9b6603d4ae9d11c1fbc90257ce816c5807b8ff
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
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;
    }
}