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;
|
import io.swagger.annotations.ApiModelProperty;
|
import org.apache.ibatis.type.Alias;
|
|
import java.util.Date;
|
import java.util.List;
|
|
/**
|
*
|
* 产品审批
|
*/
|
|
@Alias("ProductApproving")
|
@TableName(value = "tb_product_approving")
|
public class ProductApproving {
|
|
@TableId(value = "id", type = IdType.AUTO)
|
private Integer id;
|
|
private Integer mainId;
|
|
private String parentCode;
|
|
private String parentName;
|
|
private String parentModel;
|
|
@ApiModelProperty(value = "备注")
|
private String notes;
|
|
@ApiModelProperty("定制表单号")
|
private String customCode;
|
|
private Date createTime;
|
|
@ApiModelProperty("文件夹路径,绝对路径")
|
private String fileUrl;
|
|
@TableField(exist = false)
|
private List<ProductBomApproving> bomApprovingList;
|
|
public Integer getId() {
|
return id;
|
}
|
|
public void setId(Integer id) {
|
this.id = id;
|
}
|
|
public Integer getMainId() {
|
return mainId;
|
}
|
|
public void setMainId(Integer mainId) {
|
this.mainId = mainId;
|
}
|
|
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 getNotes() {
|
return notes;
|
}
|
|
public void setNotes(String notes) {
|
this.notes = notes;
|
}
|
|
public String getCustomCode() {
|
return customCode;
|
}
|
|
public void setCustomCode(String customCode) {
|
this.customCode = customCode;
|
}
|
|
public Date getCreateTime() {
|
return createTime;
|
}
|
|
public void setCreateTime(Date createTime) {
|
this.createTime = createTime;
|
}
|
|
public List<ProductBomApproving> getBomApprovingList() {
|
return bomApprovingList;
|
}
|
|
public void setBomApprovingList(List<ProductBomApproving> bomApprovingList) {
|
this.bomApprovingList = bomApprovingList;
|
}
|
|
public String getFileUrl() {
|
return fileUrl;
|
}
|
|
public void setFileUrl(String fileUrl) {
|
this.fileUrl = fileUrl;
|
}
|
}
|