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