From 089c397e3eff318d9cec8edacaf6d0f70165c38a Mon Sep 17 00:00:00 2001
From: pang.jiabao <pang_jiabao@163.com>
Date: 星期一, 09 二月 2026 13:11:15 +0800
Subject: [PATCH] 入出库日志优化
---
src/main/java/com/zy/system/entity/SaasLog.java | 19 ++++++++++++++++++-
1 files changed, 18 insertions(+), 1 deletions(-)
diff --git a/src/main/java/com/zy/system/entity/SaasLog.java b/src/main/java/com/zy/system/entity/SaasLog.java
index aa44f07..2ce8bb3 100644
--- a/src/main/java/com/zy/system/entity/SaasLog.java
+++ b/src/main/java/com/zy/system/entity/SaasLog.java
@@ -71,6 +71,15 @@
*/
private String workshop;
+ /**
+ * 鍗曟嵁绫诲瀷
+ */
+ @TableField("doc_type")
+ private Long docType;
+
+ @TableField("memo")
+ private String memo;
+
public SaasLog() {}
public SaasLog(Long id,Integer type,String locNo,String matnr,Date ioTime,Long createBy) {
@@ -99,6 +108,9 @@
}
public String getType$(){
+ if (this.type == null) {
+ return "";
+ }
if (this.type ==0) {
return "鍏ュ簱";
} else if (this.type == 1) {
@@ -107,11 +119,16 @@
return "搴撲綅绉昏浆";
} else if (this.type == 3) {
return "搴撳瓨璋冩暣";
- }else {
+ }else if (this.type == 4) {
+ return "閫�璐�";
+ } else {
return "";
}
}
+ public String getDocType$(){
+ return "";
+ }
}
--
Gitblit v1.9.1