admin
2022-04-07 e1cc0d03fadc2d251d36c0dc3650f75e830d5363
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
package com.yeshi.makemoney.app.dto.mq;
 
/**
 * @author hxh
 * @title: GoldCornSettleMQMsg
 * @description: 金币结算消息
 * @date 2022/4/7 13:42
 */
public class GoldCornSettleMQMsg {
 
    private Long uid;
    private String day;
    private long createTime;
 
    public GoldCornSettleMQMsg() {
    }
 
 
    public GoldCornSettleMQMsg(Long uid, String day, long createTime) {
        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;
    }
}