package com.whyc.pojo;
|
|
import com.baomidou.mybatisplus.annotation.IdType;
|
import com.baomidou.mybatisplus.annotation.TableId;
|
import com.baomidou.mybatisplus.annotation.TableName;
|
|
import java.util.Date;
|
|
/**
|
* BOM问题反馈表
|
*/
|
@TableName("tb_bom_feedback")
|
public class BOMFeedbak {
|
|
@TableId(type = IdType.AUTO)
|
private Integer id;
|
|
private Integer productId;
|
private Integer subVersion;
|
private String content;
|
private String file;
|
private Integer senderId;
|
private String receiverIds;
|
private Date createTime;
|
private Integer confirmStatus;
|
|
public Integer getId() {
|
return id;
|
}
|
|
public void setId(Integer id) {
|
this.id = id;
|
}
|
|
public Integer getProductId() {
|
return productId;
|
}
|
|
public void setProductId(Integer productId) {
|
this.productId = productId;
|
}
|
|
public Integer getSubVersion() {
|
return subVersion;
|
}
|
|
public void setSubVersion(Integer subVersion) {
|
this.subVersion = subVersion;
|
}
|
|
public String getContent() {
|
return content;
|
}
|
|
public void setContent(String content) {
|
this.content = content;
|
}
|
|
public String getFile() {
|
return file;
|
}
|
|
public void setFile(String file) {
|
this.file = file;
|
}
|
|
public Integer getSenderId() {
|
return senderId;
|
}
|
|
public void setSenderId(Integer senderId) {
|
this.senderId = senderId;
|
}
|
|
public String getReceiverIds() {
|
return receiverIds;
|
}
|
|
public void setReceiverIds(String receiverIds) {
|
this.receiverIds = receiverIds;
|
}
|
|
public Date getCreateTime() {
|
return createTime;
|
}
|
|
public void setCreateTime(Date createTime) {
|
this.createTime = createTime;
|
}
|
|
public Integer getConfirmStatus() {
|
return confirmStatus;
|
}
|
|
public void setConfirmStatus(Integer confirmStatus) {
|
this.confirmStatus = confirmStatus;
|
}
|
}
|