whyclxw
2 天以前 cf9a5039e6db9d1d5963e3fe1a37d00169ec2ef7
src/main/java/com/whyc/pojo/ProductBomApproving.java
@@ -11,15 +11,13 @@
/**
 * 产品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("母料名称")
@@ -67,7 +65,7 @@
    @TableField(exist = false)
    private String excelName;
    @ApiModelProperty("散装件数组")
    @ApiModelProperty("物料列表")
    @TableField(exist = false)
    private List<Material> materialList;
@@ -77,14 +75,6 @@
    public void setId(Integer id) {
        this.id = id;
    }
    public Integer getMainId() {
        return mainId;
    }
    public void setMainId(Integer mainId) {
        this.mainId = mainId;
    }
    public String getParentCode() {
@@ -271,12 +261,12 @@
        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() {