Commit 879c0234 by zhangchen

1.活动添加字段

parent 28fc3ade
......@@ -28,6 +28,9 @@ public class BuyVoucherActivityBean implements Serializable {
private Date createdTime;//优惠券创建时间
private Integer isSendRedPacket;//是否发放红包:0 不发放 1发放
private BigDecimal redPacketPrice;//红包金额
private String sendName;//发送方名称
private String actName;//活动名称
private String wishing;//祝福语
public Integer getId() {
return id;
......@@ -177,6 +180,31 @@ public class BuyVoucherActivityBean implements Serializable {
this.redPacketPrice = redPacketPrice;
}
public String getSendName() {
return sendName;
}
public void setSendName(String sendName) {
this.sendName = sendName;
}
public String getActName() {
return actName;
}
public void setActName(String actName) {
this.actName = actName;
}
public String getWishing() {
return wishing;
}
public void setWishing(String wishing) {
this.wishing = wishing;
}
}
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or sign in to comment