admin
2022-10-28 0e9b6603d4ae9d11c1fbc90257ce816c5807b8ff
app/src/main/java/com/yeshi/makemoney/app/service/query/goldcorn/GoldCornConsumeRecordQuery.java
@@ -1,16 +1,39 @@
package com.yeshi.makemoney.app.service.query.goldcorn;
public class GoldCornConsumeRecordQuery {
    //搜索关键词
    private String kw;
import com.yeshi.makemoney.app.entity.goldcorn.GoldCornConsumeType;
import com.yeshi.makemoney.app.service.query.BaseQuery;
    private String getKw(){
        return kw;
public class GoldCornConsumeRecordQuery extends BaseQuery {
    private GoldCornConsumeType type;
    private Long uid;
    private String eventId;
    public GoldCornConsumeType getType() {
        return type;
    }
    private void setKw(String kw){
        this.kw = kw;
    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;
    }
}