admin
2025-02-25 30d8e227e8d823b6c38c3b9c90ac2df03b63befe
fanli/src/main/java/com/yeshi/fanli/dto/mq/user/body/BeComeValidUserMQMsg.java
@@ -1,39 +1,39 @@
package com.yeshi.fanli.dto.mq.user.body;
import java.util.Date;
import com.yeshi.fanli.dto.mq.BaseMQMsgBody;
/**
 *  成为有效用户
 *
 * @author Administrator
 *
 */
public class BeComeValidUserMQMsg extends BaseMQMsgBody {
   private Long uid;
   private Date createTime;
   public BeComeValidUserMQMsg(Long uid, Date createTime) {
      super();
      this.uid = uid;
      this.setCreateTime(createTime);
   }
   public Long getUid() {
      return uid;
   }
   public void setUid(Long uid) {
      this.uid = uid;
   }
   public Date getCreateTime() {
      return createTime;
   }
   public void setCreateTime(Date createTime) {
      this.createTime = createTime;
   }
}
package com.yeshi.fanli.dto.mq.user.body;
import java.util.Date;
import com.yeshi.fanli.dto.mq.BaseMQMsgBody;
/**
 *  成为有效用户
 *
 * @author Administrator
 *
 */
public class BeComeValidUserMQMsg extends BaseMQMsgBody {
   private Long uid;
   private Date createTime;
   public BeComeValidUserMQMsg(Long uid, Date createTime) {
      super();
      this.uid = uid;
      this.setCreateTime(createTime);
   }
   public Long getUid() {
      return uid;
   }
   public void setUid(Long uid) {
      this.uid = uid;
   }
   public Date getCreateTime() {
      return createTime;
   }
   public void setCreateTime(Date createTime) {
      this.createTime = createTime;
   }
}