| | |
| | | /** |
| | | * 产品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 productId; |
| | | @ApiModelProperty("产品审批id") |
| | | private Integer productApprovingId; |
| | | @ApiModelProperty("母料编号") |
| | | private String parentCode; |
| | | @ApiModelProperty("母料名称") |
| | |
| | | @TableField(exist = false) |
| | | private String excelName; |
| | | |
| | | @ApiModelProperty("散装件数组") |
| | | @ApiModelProperty("物料列表") |
| | | @TableField(exist = false) |
| | | private List<Material> materialList; |
| | | |
| | |
| | | |
| | | 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.excelName = excelName; |
| | | } |
| | | |
| | | public Integer getProductId() { |
| | | return productId; |
| | | public Integer getProductApprovingId() { |
| | | return productApprovingId; |
| | | } |
| | | |
| | | public void setProductId(Integer productId) { |
| | | this.productId = productId; |
| | | public void setProductApprovingId(Integer productApprovingId) { |
| | | this.productApprovingId = productApprovingId; |
| | | } |
| | | |
| | | public List<Material> getMaterialList() { |