Commit ea08db05 by guojuxing

纸质普通发票改为电子发票

parent de8c8f37
......@@ -56,6 +56,16 @@ public class InvoiceDTO implements Serializable{
*/
private String shippingAddress;
/**
* 电子发票类型,接收人邮箱
*/
private String email;
/**
* 营业执照 图片地址
*/
private String businessLicense;
public String getAccountName() {
return accountName;
}
......@@ -127,4 +137,22 @@ public class InvoiceDTO implements Serializable{
public void setShippingAddress(String shippingAddress) {
this.shippingAddress = shippingAddress;
}
public String getEmail() {
return email;
}
public InvoiceDTO setEmail(String email) {
this.email = email;
return this;
}
public String getBusinessLicense() {
return businessLicense;
}
public InvoiceDTO setBusinessLicense(String businessLicense) {
this.businessLicense = businessLicense;
return this;
}
}
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 to comment