| | |
| | | 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; |
| | | |
| | |
| | | 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; |
| | |
| | | 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; |
| | | } |
| | | } |