|
@ -52,7 +52,7 @@ public class SysSalesOrder extends BaseEntity { |
|
|
/* 客户代码*/ |
|
|
/* 客户代码*/ |
|
|
@Excel(name = "客户代码") |
|
|
@Excel(name = "客户代码") |
|
|
private String enterpriseCode; |
|
|
private String enterpriseCode; |
|
|
@Excel(name="币种") |
|
|
@Excel(name="币种",dictType = "sys_common_currency") |
|
|
private String commonCurrency; |
|
|
private String commonCurrency; |
|
|
/*美元汇率*/ |
|
|
/*美元汇率*/ |
|
|
@Excel(name = "美元汇率") |
|
|
@Excel(name = "美元汇率") |
|
@ -109,15 +109,10 @@ public class SysSalesOrder extends BaseEntity { |
|
|
@Excel(name = "客户收货人") |
|
|
@Excel(name = "客户收货人") |
|
|
private String customerDelivery; |
|
|
private String customerDelivery; |
|
|
|
|
|
|
|
|
/*客户收货人(Bill to)*/ |
|
|
|
|
|
private String customerDeliveryBillto; |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/*客户收货人电话*/ |
|
|
/*客户收货人电话*/ |
|
|
|
|
|
@Excel(name = "客户收货人电话") |
|
|
private String deliveryPhone; |
|
|
private String deliveryPhone; |
|
|
|
|
|
|
|
|
/*客户收货人电话(Bill to)*/ |
|
|
|
|
|
private String deliveryPhoneBillto; |
|
|
|
|
|
|
|
|
|
|
|
/* 交货条件*/ |
|
|
/* 交货条件*/ |
|
|
@Excel(name = "交货条件") |
|
|
@Excel(name = "交货条件") |
|
@ -129,9 +124,6 @@ public class SysSalesOrder extends BaseEntity { |
|
|
@Excel(name = "交货地点") |
|
|
@Excel(name = "交货地点") |
|
|
private String deliveryAddress; |
|
|
private String deliveryAddress; |
|
|
|
|
|
|
|
|
/*交货地点(Bill to)*/ |
|
|
|
|
|
private String deliveryAddressBillto; |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/*付款条件*/ |
|
|
/*付款条件*/ |
|
|
@Excel(name = "付款条件") |
|
|
@Excel(name = "付款条件") |
|
@ -169,7 +161,7 @@ public class SysSalesOrder extends BaseEntity { |
|
|
@Excel(name = "合计金额") |
|
|
@Excel(name = "合计金额") |
|
|
private String totalAmount; |
|
|
private String totalAmount; |
|
|
/* 文件存储 */ |
|
|
/* 文件存储 */ |
|
|
@Excel(name = "文件存储") |
|
|
// @Excel(name = "文件存储")
|
|
|
private String fileUpload; |
|
|
private String fileUpload; |
|
|
/*备用一*/ |
|
|
/*备用一*/ |
|
|
@Excel(name = "实收金额(RMB)") |
|
|
@Excel(name = "实收金额(RMB)") |
|
@ -216,6 +208,12 @@ public class SysSalesOrder extends BaseEntity { |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/*交货地点(Bill to)*/ |
|
|
|
|
|
private String deliveryAddressBillto; |
|
|
|
|
|
/*客户收货人(Bill to)*/ |
|
|
|
|
|
private String customerDeliveryBillto; |
|
|
|
|
|
/*客户收货人电话(Bill to)*/ |
|
|
|
|
|
private String deliveryPhoneBillto; |
|
|
public Long getSalesOrderId() { |
|
|
public Long getSalesOrderId() { |
|
|
return salesOrderId; |
|
|
return salesOrderId; |
|
|
} |
|
|
} |
|
|