lxw
2023-02-03 f41f7539ee1dd0232a8bb482f774e1c9149a99e9
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;
    }
}