From a97c0e84c8d1f50aa65935643a580527f30b7ece Mon Sep 17 00:00:00 2001 From: 廖井涛 <2265517004@qq.com> Date: 星期二, 12 三月 2024 08:39:38 +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 | 25 +++++++++++++++++++++---- 1 files changed, 21 insertions(+), 4 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 d12051e..bb4f0f4 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,10 +1,15 @@ 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) //鑷id @@ -38,9 +43,9 @@ //鐝 private String classes; //鐝粍缂栧彿 - private String teamsgroupsId; + private String teamsGroupsId; //鐝粍鍚嶇О - private String teamsgroupsName; + private String teamsGroupsName; //鎶ュ伐鐘舵�� private Integer reportingWorkState; //瀹℃牳浜� @@ -50,11 +55,11 @@ //澶囨敞 private String notes; //璐ㄦ鍛� - private String qualityInsPector; + private String qualityInspector; //鍖呰鏂瑰紡 private String packagingMethod; //鎶ュ伐鏃堕棿 - private LocalDate reportingWorkTime; + private LocalDateTime reportingWorkTime; //瀹℃牳鏃堕棿 private LocalDate examineTime; //璐ㄦ鏃堕棿 @@ -64,6 +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; +// @TableField(select = false,exist= false) +// private ReportingWork reportingWork; + @TableField(select = false,exist= false) + private ReportingWorkDetail reportingWorkDetail; } -- Gitblit v1.8.0