| | |
| | | import org.apache.ibatis.type.Alias; |
| | | |
| | | import java.util.Date; |
| | | import java.util.List; |
| | | |
| | | /** |
| | | * 产品bom表-待审批生效 |
| | | */ |
| | | @TableName(schema = "db_doc",value = "tb_product_bom_approving") |
| | | @TableName(value = "tb_product_bom_approving") |
| | | @Alias("ProductBomApproving") |
| | | public class ProductBomApproving { |
| | | |
| | | private Integer id; |
| | | @ApiModelProperty("审批主表id") |
| | | private Integer mainId; |
| | | @ApiModelProperty("产品审批id") |
| | | private Integer productApprovingId; |
| | | @ApiModelProperty("母料编号") |
| | | private String parentCode; |
| | | @ApiModelProperty("母料名称") |
| | |
| | | private String pictureUrl; |
| | | private String fileUrl; |
| | | @ApiModelProperty("上传人") |
| | | private String upUser; |
| | | private Long upUserId; |
| | | private Date createDate; |
| | | private Date updateDate; |
| | | @ApiModelProperty("版本") |
| | | private Integer version; |
| | | @ApiModelProperty("母料版本号(产品版本号)") |
| | | private String parentVersion; |
| | | |
| | | @ApiModelProperty("工程图纸url") |
| | | private String dwgUrl; |
| | | |
| | |
| | | @TableField(exist = false) |
| | | private Integer dwgExist; |
| | | |
| | | @TableField(exist = false) |
| | | private String excelName; |
| | | |
| | | @ApiModelProperty("物料列表") |
| | | @TableField(exist = false) |
| | | private List<Material> materialList; |
| | | |
| | | 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() { |
| | |
| | | this.fileUrl = fileUrl; |
| | | } |
| | | |
| | | public String getUpUser() { |
| | | return upUser; |
| | | public Long getUpUserId() { |
| | | return upUserId; |
| | | } |
| | | |
| | | public void setUpUser(String upUser) { |
| | | this.upUser = upUser; |
| | | public void setUpUserId(Long upUserId) { |
| | | this.upUserId = upUserId; |
| | | } |
| | | |
| | | public Date getCreateDate() { |
| | |
| | | this.createDate = createDate; |
| | | } |
| | | |
| | | public Date getUpdateDate() { |
| | | return updateDate; |
| | | } |
| | | |
| | | public void setUpdateDate(Date updateDate) { |
| | | this.updateDate = updateDate; |
| | | } |
| | | |
| | | public Integer getVersion() { |
| | | return version; |
| | | } |
| | | |
| | | public void setVersion(Integer version) { |
| | | this.version = version; |
| | | } |
| | | |
| | | public String getParentVersion() { |
| | | return parentVersion; |
| | | } |
| | | |
| | | public void setParentVersion(String parentVersion) { |
| | | this.parentVersion = parentVersion; |
| | | } |
| | | |
| | | public String getType() { |
| | |
| | | public void setDwgExist(Integer dwgExist) { |
| | | this.dwgExist = dwgExist; |
| | | } |
| | | |
| | | public String getExcelName() { |
| | | return excelName; |
| | | } |
| | | |
| | | public void setExcelName(String excelName) { |
| | | this.excelName = excelName; |
| | | } |
| | | |
| | | public Integer getProductApprovingId() { |
| | | return productApprovingId; |
| | | } |
| | | |
| | | public void setProductApprovingId(Integer productApprovingId) { |
| | | this.productApprovingId = productApprovingId; |
| | | } |
| | | |
| | | public List<Material> getMaterialList() { |
| | | return materialList; |
| | | } |
| | | |
| | | public void setMaterialList(List<Material> materialList) { |
| | | this.materialList = materialList; |
| | | } |
| | | } |