admin
2025-02-25 30d8e227e8d823b6c38c3b9c90ac2df03b63befe
fanli/src/main/java/com/yeshi/fanli/dto/mq/user/body/IntegralTaskMQMsg.java
@@ -1,53 +1,53 @@
package com.yeshi.fanli.dto.mq.user.body;
import java.util.Date;
import com.yeshi.fanli.dto.mq.BaseMQMsgBody;
/**
 * 金币任务
 *
 * @author Administrator
 *
 */
public class IntegralTaskMQMsg extends BaseMQMsgBody {
   public IntegralTaskMQMsg(Long uid, long longegralCount, Date createTime) {
      super();
      this.uid = uid;
      this.longegralCount = longegralCount;
      this.createTime = createTime;
   }
   public IntegralTaskMQMsg() {
      super();
   }
   private Long uid;// 用户ID
   private long longegralCount;// 金币数量
   private Date createTime;// 创建时间
   public Date getCreateTime() {
      return createTime;
   }
   public void setCreateTime(Date createTime) {
      this.createTime = createTime;
   }
   public Long getUid() {
      return uid;
   }
   public void setUid(Long uid) {
      this.uid = uid;
   }
   public long getIntegralCount() {
      return longegralCount;
   }
   public void setIntegralCount(long longegralCount) {
      this.longegralCount = longegralCount;
   }
}
package com.yeshi.fanli.dto.mq.user.body;
import java.util.Date;
import com.yeshi.fanli.dto.mq.BaseMQMsgBody;
/**
 * 金币任务
 *
 * @author Administrator
 *
 */
public class IntegralTaskMQMsg extends BaseMQMsgBody {
   public IntegralTaskMQMsg(Long uid, long longegralCount, Date createTime) {
      super();
      this.uid = uid;
      this.longegralCount = longegralCount;
      this.createTime = createTime;
   }
   public IntegralTaskMQMsg() {
      super();
   }
   private Long uid;// 用户ID
   private long longegralCount;// 金币数量
   private Date createTime;// 创建时间
   public Date getCreateTime() {
      return createTime;
   }
   public void setCreateTime(Date createTime) {
      this.createTime = createTime;
   }
   public Long getUid() {
      return uid;
   }
   public void setUid(Long uid) {
      this.uid = uid;
   }
   public long getIntegralCount() {
      return longegralCount;
   }
   public void setIntegralCount(long longegralCount) {
      this.longegralCount = longegralCount;
   }
}