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
package com.yeshi.makemoney.app.dto.mq;
 
import com.yeshi.makemoney.app.entity.goldcorn.GoldCornGetType;
 
/**
 * @author hxh
 * @title: AddGoldCornMQMsg
 * @description: TODO
 * @date 2022/4/6 19:16
 */
public class AddGoldCornMQMsg {
 
    private Long uid;
    private GoldCornGetType type;
    private long currentTime;
 
    public Long getUid() {
        return uid;
    }
 
    public void setUid(Long uid) {
        this.uid = uid;
    }
 
    public GoldCornGetType getType() {
        return type;
    }
 
    public void setType(GoldCornGetType type) {
        this.type = type;
    }
 
    public long getCurrentTime() {
        return currentTime;
    }
 
    public void setCurrentTime(long currentTime) {
        this.currentTime = currentTime;
    }
}