Commit 90983aa5 by chongli

增加发票递送方式和递送费相关信息

parent 5ba676cf
......@@ -56,6 +56,11 @@ public class InvoiceRequestBean {
//销售员备注
private String salesRemark;
//寄送方式:到付、寄送
private String sendWay;
//到付,付款信息
private String payInfo;
public InvoiceRequestBean() {
......@@ -216,4 +221,20 @@ public class InvoiceRequestBean {
this.salesRemark = salesRemark;
}
public String getSendWay() {
return sendWay;
}
public void setSendWay(String sendWay) {
this.sendWay = sendWay;
}
public String getPayInfo() {
return payInfo;
}
public void setPayInfo(String payInfo) {
this.payInfo = payInfo;
}
}
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