自动化立体仓库 - WMS系统
#
Junjie
5 天以前 4c7ab64e5a6bf855ece40e760ba7ad16cf6c367b
src/main/java/com/zy/asrs/entity/WaitPakinLog.java
@@ -7,6 +7,7 @@
import com.core.common.SpringUtils;
import com.zy.asrs.service.BasProcessProceduresService;
import com.zy.asrs.service.BasQualityTestingService;
import com.zy.asrs.service.KcztMapService;
import com.zy.asrs.service.StoreTypeService;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
@@ -195,6 +196,16 @@
    @TableField("box_type3")
    private String boxType3 = "";
    /**
     * 退库标记
     */
    @ApiModelProperty(value= "退库标记")
    @TableField("tk_flag")
    private String tkFlag = "";
    //库存状态
    private String cstateid;
    public String getBeBatch$(){
        if (null == this.beBatch){ return null; }
        switch (this.beBatch){
@@ -286,4 +297,13 @@
        return this.boxType1;
    }
    public String getCstateid$() {
        KcztMapService service = SpringUtils.getBean(KcztMapService.class);
        KcztMap kcztMap = service.selectOne(new EntityWrapper<KcztMap>().eq("cstateid", this.cstateid));
        if (!Cools.isEmpty(kcztMap)){
            return String.valueOf(kcztMap.getVname());
        }
        return String.valueOf(this.cstateid);
    }
}