skyouc
1 天以前 d51f64c1f0105d4b18aa8344c11e47827730a40c
rsf-server/src/main/java/com/vincent/rsf/server/manager/entity/LocItem.java
@@ -7,6 +7,7 @@
import com.baomidou.mybatisplus.core.conditions.query.LambdaQueryWrapper;
import com.fasterxml.jackson.annotation.JsonFormat;
import com.vincent.rsf.framework.common.DateUtils;
import com.vincent.rsf.server.manager.service.LocService;
import com.vincent.rsf.server.manager.service.WarehouseAreasService;
import com.vincent.rsf.server.system.constant.DictTypeCode;
@@ -99,6 +100,10 @@
    @ApiModelProperty("出库数量")
    @TableField(exist = false)
    private Double outQty;
    @ApiModelProperty("巷道")
    @TableField(exist = false)
    private Integer channel;
    /**
     * 物料名称
@@ -215,6 +220,9 @@
    @ApiModelProperty(value= "修改人员")
    private Long updateBy;
    @ApiModelProperty("供应商ID")
    private Long splrId;
    /**
     * 修改时间
     */
@@ -222,15 +230,6 @@
    @DateTimeFormat(pattern="yyyy-MM-dd HH:mm:ss")
    @JsonFormat(pattern="yyyy-MM-dd HH:mm:ss",timezone = "GMT+8")
    private Date updateTime;
//    @TableField(exist = false)
//    private Long waveId;
//
//    @TableField(exist = false)
//    private Long waveItemId;
//
//    @TableField(exist = false)
//    private String waveCode;
    @TableField(exist = false)
    private Long sourceId;
@@ -241,6 +240,9 @@
    @TableField(exist = false)
    private String sourceCode;
    @ApiModelProperty("出站口")
    @TableField(exist = false)
    private String site;
    /**
@@ -341,6 +343,10 @@
        return dictData.getLabel();
    }
    public Double getReviseQty() {
        return this.anfme;
    }
    public String getStatus$(){
        if (null == this.status){ return null; }
        switch (this.status){
@@ -351,6 +357,11 @@
            default:
                return String.valueOf(this.status);
        }
    }
    public Integer getDeadTime() {
        if (null == this.createTime){ return null; }
        return DateUtils.diff(createTime, new Date());
    }
    public String getCreateBy$(){
@@ -384,8 +395,6 @@
        }
        return new SimpleDateFormat("yyyy-MM-dd HH:mm:ss").format(this.updateTime);
    }
    public Boolean getStatusBool(){
        if (null == this.status){ return null; }