Commit 76f32c6b by caosy

返回卷类型

parent a113136a
...@@ -66,6 +66,18 @@ public class VoucherItemDTO implements Serializable { ...@@ -66,6 +66,18 @@ public class VoucherItemDTO implements Serializable {
//客户购买体验券电话 //客户购买体验券电话
private String mobilePhone; private String mobilePhone;
// 卷类型 1 -正常卷 2-体验卷需要身份证
private Integer voucherType;
public Integer getVoucherType() {
return voucherType;
}
public void setVoucherType(Integer voucherType) {
this.voucherType = voucherType;
}
public String getRealName() { public String getRealName() {
return realName; return realName;
} }
......
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