Commit a113136a by caosy

返回特殊卷信息

parent a7357b20
...@@ -59,6 +59,43 @@ public class VoucherItemDTO implements Serializable { ...@@ -59,6 +59,43 @@ public class VoucherItemDTO implements Serializable {
@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8") @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8")
private Date createdTime; private Date createdTime;
//客户购买体验券真实姓名
private String realName;
//客户身份证后四位
private String idCard;
//客户购买体验券电话
private String mobilePhone;
public String getRealName() {
return realName;
}
public void setRealName(String realName) {
this.realName = realName;
}
public String getIdCard() {
return idCard;
}
public void setIdCard(String idCard) {
this.idCard = idCard;
}
public String getMobilePhone() {
return mobilePhone;
}
public void setMobilePhone(String mobilePhone) {
this.mobilePhone = mobilePhone;
}
public Date getCreatedTime() { public Date getCreatedTime() {
return createdTime; return createdTime;
} }
......
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