加新字段 磅单列表

product
bawei 2 years ago
parent e4911d2d80
commit 22ac98836a

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

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

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

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

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

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

Loading…
Cancel
Save