From 7ee68df04b7a169d51ab95ad9955276c9aff6ee1 Mon Sep 17 00:00:00 2001
From: chenlu <1320612696@qq.com>
Date: 星期一, 22 九月 2025 09:44:34 +0800
Subject: [PATCH] 流程卡查询界面修改表格下方汇总方式
---
north-glass-erp/src/main/java/com/example/erp/entity/pp/ReportingWorkTransfer.java | 28 ++++++++++++++++++++++++++++
1 files changed, 28 insertions(+), 0 deletions(-)
diff --git a/north-glass-erp/src/main/java/com/example/erp/entity/pp/ReportingWorkTransfer.java b/north-glass-erp/src/main/java/com/example/erp/entity/pp/ReportingWorkTransfer.java
new file mode 100644
index 0000000..42a82a6
--- /dev/null
+++ b/north-glass-erp/src/main/java/com/example/erp/entity/pp/ReportingWorkTransfer.java
@@ -0,0 +1,28 @@
+package com.example.erp.entity.pp;
+
+import com.baomidou.mybatisplus.annotation.IdType;
+import com.baomidou.mybatisplus.annotation.TableId;
+import lombok.Data;
+
+import java.time.LocalDate;
+
+@Data
+public class ReportingWorkTransfer {
+ @TableId(type = IdType.AUTO)
+ private Long id;
+ //琚浆绉昏鍗曞彿
+ private String oldOrder;
+ //琚浆绉诲簭鍙�
+ private Integer oldOrderNumber;
+ //琚浆绉诲唴瀹癸紙sd鎶ュ伐娴佺▼琛級
+ private String oldReportContent;
+
+ //鏂拌鍗�
+ private String newOrder;
+ //鏂拌鍗曞簭鍙�
+ private Integer newOrderNumber;
+ //鏂拌浆绉诲唴瀹�
+ private String newReportContent;
+ //寤虹珛鏃堕棿
+ private LocalDate createTime;
+}
--
Gitblit v1.8.0