admin
2024-04-26 5e7b0ed4a154ad067cbcf4aa1a1c7cce32f9864c
fanli/src/main/java/com/yeshi/fanli/dto/msg/MsgOtherGiveContentDTO.java
@@ -1,61 +1,68 @@
package com.yeshi.fanli.dto.msg;
/**
 * 其他消息里面的淘礼金相关的内容
 *
 * @author Administrator
 *
 */
public class MsgOtherGiveContentDTO {
   // 券
   public final static String TYEP_COUPON = "coupon";
   // 红包
   public final static String TYEP_TLJ = "taolijin";
   private String type;  //赠送类别   券: coupon;  推广红包: taoLiJin
   private String title;  // 标题
   private String giveType;  //赠送类别
   private String receiveInfo; // 领取人信息
   private String giveTime; // 赠送时间
   private String receiveTime;// 领取时间
   public String getGiveType() {
      return giveType;
   }
   public void setGiveType(String giveType) {
      this.giveType = giveType;
   }
   public String getReceiveInfo() {
      return receiveInfo;
   }
   public void setReceiveInfo(String receiveInfo) {
      this.receiveInfo = receiveInfo;
   }
   public String getGiveTime() {
      return giveTime;
   }
   public void setGiveTime(String giveTime) {
      this.giveTime = giveTime;
   }
   public String getReceiveTime() {
      return receiveTime;
   }
   public void setReceiveTime(String receiveTime) {
      this.receiveTime = receiveTime;
   }
   public String getType() {
      return type;
   }
   public void setType(String type) {
      this.type = type;
   }
   public String getTitle() {
      return title;
   }
   public void setTitle(String title) {
      this.title = title;
   }
}
package com.yeshi.fanli.dto.msg;
/**
 * 其他消息里面的淘礼金相关的内容
 *
 * @author Administrator
 *
 */
public class MsgOtherGiveContentDTO {
   // 券
   public final static String TYEP_COUPON = "coupon";
   // 红包
   public final static String TYEP_TLJ = "taolijin";
   private String type;  //赠送类别   券: coupon;  推广红包: taoLiJin
   private String title;  // 标题
   private String giveType;  //赠送类别
   private String receiveInfo; // 领取人信息
   private String giveTime; // 赠送时间
   private String receiveTime;// 领取时间
   private String returnTime;// 退回时间   :  退回时间不能为空则是退回  否则是领取成功
   public String getGiveType() {
      return giveType;
   }
   public void setGiveType(String giveType) {
      this.giveType = giveType;
   }
   public String getReceiveInfo() {
      return receiveInfo;
   }
   public void setReceiveInfo(String receiveInfo) {
      this.receiveInfo = receiveInfo;
   }
   public String getGiveTime() {
      return giveTime;
   }
   public void setGiveTime(String giveTime) {
      this.giveTime = giveTime;
   }
   public String getReceiveTime() {
      return receiveTime;
   }
   public void setReceiveTime(String receiveTime) {
      this.receiveTime = receiveTime;
   }
   public String getType() {
      return type;
   }
   public void setType(String type) {
      this.type = type;
   }
   public String getTitle() {
      return title;
   }
   public void setTitle(String title) {
      this.title = title;
   }
   public String getReturnTime() {
      return returnTime;
   }
   public void setReturnTime(String returnTime) {
      this.returnTime = returnTime;
   }
}