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) { @@ -112,6 +121,9 @@ } } public String getDocType$(){ return ""; } }