skyouc
2025-05-03 1d073089d28720503a5350718f10c97a2a9dc502
rsf-server/src/main/java/com/vincent/rsf/server/manager/entity/AsnOrderItem.java
@@ -5,6 +5,7 @@
import java.text.SimpleDateFormat;
import java.util.Date;
import com.fasterxml.jackson.annotation.JsonFormat;
import lombok.experimental.Accessors;
import org.springframework.format.annotation.DateTimeFormat;
@@ -23,7 +24,6 @@
public class AsnOrderItem implements Serializable {
    private static final long serialVersionUID = 1L;
    /**
     * ID
     */
@@ -56,6 +56,10 @@
    @ApiModelProperty("字段索引")
    private String fieldsIndex;
    @ApiModelProperty("执行数量")
    private Double workQty;
    /**
     * ASN单号
     */
@@ -84,7 +88,7 @@
     * 物料标识
     */
    @ApiModelProperty(value= "物料标识")
    private String matnrId;
    private Long matnrId;
    /**
     * 物料编码
@@ -97,6 +101,12 @@
     */
    @ApiModelProperty(value= "物料名称")
    private String maktx;
    @ApiModelProperty("规格")
    private String spec;
    @ApiModelProperty("型号")
    private String model;
    /**
     * 送货数量
@@ -117,6 +127,11 @@
    private Double purQty;
    /**
     * 库存批次
     */
    @ApiModelProperty("库存批次")
    private String batch;
    /**
     * 采购单位
     */
    @ApiModelProperty(value= "采购单位")
@@ -127,6 +142,12 @@
     */
    @ApiModelProperty(value= "已收数量")
    private Double qty;
    /**
     * 生产日期
     */
    @ApiModelProperty("生产日期")
    private String prodTime;
    /**
     * 供应商编码
@@ -164,17 +185,19 @@
    @ApiModelProperty(value= "包装名称")
    private String packName;
    @ApiModelProperty("上报状态 0: 未上报, 1: 已上报")
    private Integer ntyStatus;
    /**
     * 状态 1: 正常  0: 冻结
     * 状态 1: 正常  0: 冻结
     */
    @ApiModelProperty(value= "状态 1: 正常  0: 冻结  ")
    private Integer status;
    /**
     * 是否删除 1: 是  0: 否
     * 是否删除 1: 是  0: 否
     */
    @ApiModelProperty(value= "是否删除 1: 是  0: 否  ")
    @TableLogic
    private Integer deleted;
    /**
@@ -194,6 +217,7 @@
     */
    @ApiModelProperty(value= "添加时间")
    @DateTimeFormat(pattern="yyyy-MM-dd HH:mm:ss")
    @JsonFormat(pattern="yyyy-MM-dd HH:mm:ss",timezone = "GMT+8")
    private Date createTime;
    /**
@@ -207,6 +231,7 @@
     */
    @ApiModelProperty(value= "修改时间")
    @DateTimeFormat(pattern="yyyy-MM-dd HH:mm:ss")
    @JsonFormat(pattern="yyyy-MM-dd HH:mm:ss",timezone = "GMT+8")
    private Date updateTime;
    /**
@@ -214,10 +239,10 @@
     */
    @ApiModelProperty(value= "备注")
    private String memo;
//
    public AsnOrderItem() {}
    public AsnOrderItem(Long asnId,String asnCode,Long poDetlId, String matnrCode, String poCode,String matnrId,String matnk,Double anfme,String stockUnit,Double purQty,String purUnit,Double qty,String splrCode,String splrName,String qrcode,String barcode,String packName,Integer status,Integer deleted,Integer tenantId,Long createBy,Date createTime,Long updateBy,Date updateTime,String memo) {
    public AsnOrderItem(Long asnId,String asnCode,Long poDetlId, String matnrCode, String poCode,Long matnrId,String matnk,Double anfme,String stockUnit,Double purQty,String purUnit,Double qty,String splrCode,String splrName,String qrcode,String barcode,String packName,Integer status, Integer ntyStatus,Integer deleted,Integer tenantId,Long createBy,Date createTime,Long updateBy,Date updateTime,String memo) {
        this.asnId = asnId;
        this.asnCode = asnCode;
        this.poDetlId = poDetlId;
@@ -230,6 +255,7 @@
        this.purQty = purQty;
        this.purUnit = purUnit;
        this.qty = qty;
        this.ntyStatus = ntyStatus;
        this.splrCode = splrCode;
        this.splrName = splrName;
        this.qrcode = qrcode;