From 94a4338bc10d9431dcd9c93dcc8b97d6c08f09b2 Mon Sep 17 00:00:00 2001
From: guoyuji <guoyujie@ng.com>
Date: 星期三, 06 三月 2024 10:07:35 +0800
Subject: [PATCH] 添加报工程序

---
 north-glass-erp/src/main/java/com/example/erp/entity/pp/ReportingWork.java |   16 +++++++++++++---
 1 files changed, 13 insertions(+), 3 deletions(-)

diff --git a/north-glass-erp/src/main/java/com/example/erp/entity/pp/ReportingWork.java b/north-glass-erp/src/main/java/com/example/erp/entity/pp/ReportingWork.java
index 404f103..f113d68 100644
--- a/north-glass-erp/src/main/java/com/example/erp/entity/pp/ReportingWork.java
+++ b/north-glass-erp/src/main/java/com/example/erp/entity/pp/ReportingWork.java
@@ -1,11 +1,14 @@
 package com.example.erp.entity.pp;
 
 import com.baomidou.mybatisplus.annotation.IdType;
+import com.baomidou.mybatisplus.annotation.TableField;
 import com.baomidou.mybatisplus.annotation.TableId;
 import com.example.erp.entity.sd.Order;
 import lombok.Data;
 
 import java.time.LocalDate;
+import java.time.LocalDateTime;
+
 @Data
 public class ReportingWork {
     @TableId(type = IdType.AUTO)
@@ -56,7 +59,7 @@
     //鍖呰鏂瑰紡
     private String packagingMethod;
     //鎶ュ伐鏃堕棿
-    private LocalDate reportingWorkTime;
+    private LocalDateTime reportingWorkTime;
     //瀹℃牳鏃堕棿
     private LocalDate examineTime;
     //璐ㄦ鏃堕棿
@@ -66,11 +69,18 @@
     //淇敼鏃堕棿
     private LocalDate updateTime;
 
+    //鍒涘缓鑰�
+    private String creatorId ;
+    private String creator ;
 
+
+    @TableField(select = false,exist= false)
     private Order order;
     //澶栭敭娴佺▼鍗¤〃
+    @TableField(select = false,exist= false)
     private FlowCard flowCard;
-    private ReportingWork reportingWork;
-
+//    @TableField(select = false,exist= false)
+//    private ReportingWork reportingWork;
+    @TableField(select = false,exist= false)
     private  ReportingWorkDetail reportingWorkDetail;
 }

--
Gitblit v1.8.0