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