加新字段磅单列表

product
bawei 2 years ago
parent be917b8b38
commit e980bfbcfd

@ -2,7 +2,10 @@
package jnpf.poundlist.model.poundlist;
import com.baomidou.mybatisplus.annotation.TableField;
import lombok.Data;
import java.util.Date;
import java.util.List;
import java.math.BigDecimal;
import com.fasterxml.jackson.annotation.JsonProperty;
@ -139,6 +142,10 @@ public class PoundlistCrForm {
@JsonProperty("remark")
private String remark;
/** 创建时间 **/
@JsonProperty("creatorTime")
private String creatorTime;
}

@ -143,4 +143,9 @@ public class PoundlistInfoVO{
@JsonProperty("remark")
private String remark;
/** 创建时间 **/
@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss",timezone = "GMT+8")
@JsonProperty("creatorTime")
private Date creatorTime;
}

@ -212,6 +212,8 @@ public class PoundlistListVO{
@JsonProperty("rate")
private String rate;
@JsonProperty("vehicleName")
private String vehicleName;
@ -238,4 +240,9 @@ public class PoundlistListVO{
@TableField("salesId")
private String salesId;
/** 创建时间 **/
@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss",timezone = "GMT+8")
@JsonProperty("creatorTime")
private Date creatorTime;
}

@ -169,5 +169,7 @@ public class PoundlistUpForm{
@JsonProperty("remark")
private String remark;
/** 创建时间 **/
@JsonProperty("creatorTime")
private String creatorTime;
}

@ -187,6 +187,9 @@ public class TradeuploadEntity {
@TableField("IS_EXPENSE")
private String isExpense;
@TableField("COLLECT_PRICE")
private BigDecimal collectPrice;
@TableField(exist = false)
private String materialName;

@ -156,5 +156,8 @@ public class TradeuploadCrForm {
@JsonProperty("isExamine")
private String isExamine;
/** 收货单价 **/
@JsonProperty("collectPrice")
private String collectPrice;
}

@ -129,4 +129,7 @@ public class TradeuploadInfoVO{
@JsonProperty("isExamine")
private String isExamine;
/** 收货单价 **/
@JsonProperty("collectPrice")
private String collectPrice;
}

@ -181,4 +181,8 @@ public class TradeuploadListVO{
@JsonProperty("naturalName")
private String naturalName;
/** 收货单价 **/
@JsonProperty("collectPrice")
private String collectPrice;
}

@ -147,5 +147,9 @@ public class TradeuploadUpForm{
@JsonProperty("isExamine")
private String isExamine;
/** 收货单价 **/
@JsonProperty("collectPrice")
private String collectPrice;
}
Loading…
Cancel
Save