加新字段 磅单列表

product
bawei 2 years ago
parent e4911d2d80
commit 22ac98836a

@ -325,6 +325,10 @@ public class PoundlistController {
case "remark" : case "remark" :
entitys.add(new ExcelExportEntity("备注" ,"remark")); entitys.add(new ExcelExportEntity("备注" ,"remark"));
break; break;
case "collectPrice" :
entitys.add(new ExcelExportEntity("收货单价" ,"collectPrice"));
break;
default: default:
break; break;
} }

@ -112,6 +112,9 @@ public class PoundlistEntity {
@TableField("PURCHASE_PRICE") @TableField("PURCHASE_PRICE")
private BigDecimal purchasePrice; private BigDecimal purchasePrice;
@TableField("COLLECT_PRICE")
private BigDecimal collectPrice;
@TableField("SALES_PRICE") @TableField("SALES_PRICE")
private BigDecimal salesPrice; private BigDecimal salesPrice;

@ -115,6 +115,10 @@ public class PoundlistCrForm {
@JsonProperty("purchasePrice") @JsonProperty("purchasePrice")
private String purchasePrice; private String purchasePrice;
/** 收货单价 **/
@JsonProperty("collectPrice")
private String collectPrice;
/** 进项票日期 **/ /** 进项票日期 **/
@JsonProperty("inputDate") @JsonProperty("inputDate")
private Long inputDate; private Long inputDate;

@ -119,6 +119,10 @@ public class PoundlistInfoVO{
@JsonProperty("purchasePrice") @JsonProperty("purchasePrice")
private String purchasePrice; private String purchasePrice;
/** 收货单价 **/
@JsonProperty("collectPrice")
private String collectPrice;
/** 进项票日期 **/ /** 进项票日期 **/
@JsonProperty("inputDate") @JsonProperty("inputDate")
private Long inputDate; private Long inputDate;

@ -163,6 +163,10 @@ public class PoundlistListVO{
@JsonProperty("purchasePrice") @JsonProperty("purchasePrice")
private String purchasePrice; private String purchasePrice;
/** 收货单价 **/
@JsonProperty("collectPrice")
private String collectPrice;
/** 进项票日期 **/ /** 进项票日期 **/
@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss",timezone = "GMT+8") @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss",timezone = "GMT+8")

@ -140,6 +140,10 @@ public class PoundlistUpForm{
@JsonProperty("purchasePrice") @JsonProperty("purchasePrice")
private String purchasePrice; private String purchasePrice;
/** 收货单价 **/
@JsonProperty("collectPrice")
private String collectPrice;
/** 进项票日期 **/ /** 进项票日期 **/
@JsonProperty("inputDate") @JsonProperty("inputDate")

Loading…
Cancel
Save