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;
|
}
|
}
|