From f41f7539ee1dd0232a8bb482f774e1c9149a99e9 Mon Sep 17 00:00:00 2001
From: lxw <810412026@qq.com>
Date: 星期五, 03 二月 2023 16:07:26 +0800
Subject: [PATCH] 反馈

---
 src/main/java/com/whyc/pojo/BOMFeedback.java |   55 +++++++++++++++++++++++++++++++++++++++++++++++++++++++
 1 files changed, 55 insertions(+), 0 deletions(-)

diff --git a/src/main/java/com/whyc/pojo/BOMFeedback.java b/src/main/java/com/whyc/pojo/BOMFeedback.java
index 404935a..8a6c4ed 100644
--- a/src/main/java/com/whyc/pojo/BOMFeedback.java
+++ b/src/main/java/com/whyc/pojo/BOMFeedback.java
@@ -1,6 +1,7 @@
 package com.whyc.pojo;
 
 import com.baomidou.mybatisplus.annotation.IdType;
+import com.baomidou.mybatisplus.annotation.TableField;
 import com.baomidou.mybatisplus.annotation.TableId;
 import com.baomidou.mybatisplus.annotation.TableName;
 
@@ -16,15 +17,29 @@
     private Integer id;
 
     private Integer productId;
+    @TableField(exist = false)
+    private String  parentCode;
+    @TableField(exist = false)
+    private String  parentName;
+    @TableField(exist = false)
+    private String  parentModel;
+    @TableField(exist = false)
+    private String  customCode;
+
     private Integer subVersion;
     private String content;
     private String file;
+
     private Integer senderId;
+    @TableField(exist = false)
+    private String senderName;
+
     private String receiverIds;
     private String receiverNames;
     private Date createTime;
     private Integer confirmStatus;
     private String confirmUserName;
+
 
     public Integer getId() {
         return id;
@@ -113,4 +128,44 @@
     public void setConfirmUserName(String confirmUserName) {
         this.confirmUserName = confirmUserName;
     }
+
+    public String getParentCode() {
+        return parentCode;
+    }
+
+    public void setParentCode(String parentCode) {
+        this.parentCode = parentCode;
+    }
+
+    public String getParentName() {
+        return parentName;
+    }
+
+    public void setParentName(String parentName) {
+        this.parentName = parentName;
+    }
+
+    public String getParentModel() {
+        return parentModel;
+    }
+
+    public void setParentModel(String parentModel) {
+        this.parentModel = parentModel;
+    }
+
+    public String getCustomCode() {
+        return customCode;
+    }
+
+    public void setCustomCode(String customCode) {
+        this.customCode = customCode;
+    }
+
+    public String getSenderName() {
+        return senderName;
+    }
+
+    public void setSenderName(String senderName) {
+        this.senderName = senderName;
+    }
 }

--
Gitblit v1.9.1