From a6c70be014537e9b5ed48e68edaf3a1a94cb1ac7 Mon Sep 17 00:00:00 2001
From: guoyuji <guoyujie@ng.com>
Date: 星期二, 23 一月 2024 11:48:58 +0800
Subject: [PATCH] Merge branch 'master' of http://10.153.19.25:10101/r/ERP_override

---
 north-glass-erp/src/main/java/com/example/erp/entity/pp/ReportingWork.java |   69 ++++++++++++++++++++++++++++++++++
 1 files changed, 69 insertions(+), 0 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
new file mode 100644
index 0000000..d12051e
--- /dev/null
+++ b/north-glass-erp/src/main/java/com/example/erp/entity/pp/ReportingWork.java
@@ -0,0 +1,69 @@
+package com.example.erp.entity.pp;
+
+import com.baomidou.mybatisplus.annotation.IdType;
+import com.baomidou.mybatisplus.annotation.TableId;
+
+import java.time.LocalDate;
+
+public class ReportingWork {
+    @TableId(type = IdType.AUTO)
+    //鑷id
+    private Integer id;
+    //鎶ュ伐缂栧彿
+    private String reportingWorkId;
+    //閿�鍞崟鍙�
+    private String orderId;
+    //鐢熶骇璁㈠崟鍙�
+    private String productionId;
+    //娴佺▼鍗″彿
+    private String processId;
+    //璁惧缂栧彿
+    private String deviceId;
+    //璁惧鍚嶇О
+    private String deviceName;
+    //涓婂伐搴�
+    private String previousProcess;
+    //涓婂伐搴忔暟閲�
+    private Integer previousProcessQuantity;
+    //鏈伐搴�
+    private String thisProcess;
+    //涓婂伐搴忔暟閲�
+    private Integer thisProcessQuantity;
+    //鏈伐搴忓畬宸ユ暟閲�
+    private Integer thisCompletedQuantity;
+    //鏈伐搴忔鐮存暟閲�
+    private Integer thisWornQuantity;
+    //涓嬪伐搴�
+    private String nextProcess;
+    //鐝
+    private String classes;
+    //鐝粍缂栧彿
+    private String teamsgroupsId;
+    //鐝粍鍚嶇О
+    private String teamsgroupsName;
+    //鎶ュ伐鐘舵��
+    private Integer reportingWorkState;
+    //瀹℃牳浜�
+    private String reviewed;
+    //瀹℃牳鐘舵��
+    private Integer reviewedState;
+    //澶囨敞
+    private String notes;
+    //璐ㄦ鍛�
+    private String qualityInsPector;
+    //鍖呰鏂瑰紡
+    private String packagingMethod;
+    //鎶ュ伐鏃堕棿
+    private LocalDate reportingWorkTime;
+    //瀹℃牳鏃堕棿
+    private LocalDate examineTime;
+    //璐ㄦ鏃堕棿
+    private LocalDate qualityInsTime;
+    //寤虹珛鏃堕棿
+    private LocalDate createTime;
+    //淇敼鏃堕棿
+    private LocalDate updateTime;
+
+    //澶栭敭娴佺▼鍗¤〃
+    private FlowCard flowCard;
+}

--
Gitblit v1.8.0