自动化立体仓库 - WMS系统
pang.jiabao
2025-04-28 d9aab59e3d4c8688eaf00c0d98f6926a218ff57f
src/main/java/com/zy/system/entity/SaasLog.java
@@ -71,6 +71,12 @@
     */
    private String workshop;
    /**
     * 单据类型
     */
    @TableField("doc_type")
    private Long docType;
    public SaasLog() {}
    public SaasLog(Long id,Integer type,String locNo,String matnr,Date ioTime,Long createBy) {
@@ -99,6 +105,9 @@
    }
    public String getType$(){
        if (this.type == null) {
            return "";
        }
        if (this.type ==0) {
            return "入库";
           } else if (this.type == 1) {
@@ -107,11 +116,16 @@
            return "库位移转";
        } else if (this.type == 3) {
            return "库存调整";
        }else {
        }else if (this.type == 4) {
            return "退货";
        } else {
            return "";
        }
    }
    public String getDocType$(){
        return "";
    }
}