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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
package com.yeshi.makemoney.app.dto.mq;
 
/**
 * @author hxh
 * @title: GoldCornSettleMQMsg
 * @description: 金币结算消息
 * @date 2022/4/7 13:42
 */
public class GoldCornSettleMQMsg {
 
    private String settleId;
    private Long uid;
    private String day;
    private long createTime;
 
    public GoldCornSettleMQMsg() {
    }
 
 
    public GoldCornSettleMQMsg(String settleId, Long uid, String day, long createTime) {
        this.settleId = settleId;
        this.uid = uid;
        this.day = day;
        this.createTime = createTime;
    }
 
    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 long getCreateTime() {
        return createTime;
    }
 
    public void setCreateTime(long createTime) {
        this.createTime = createTime;
    }
 
    public String getSettleId() {
        return settleId;
    }
 
    public void setSettleId(String settleId) {
        this.settleId = settleId;
    }
}