whyclxw
3 天以前 cf9a5039e6db9d1d5963e3fe1a37d00169ec2ef7
src/main/java/com/whyc/pojo/ProductBomApproving.java
@@ -1,27 +1,31 @@
package com.whyc.pojo;
import com.baomidou.mybatisplus.annotation.TableField;
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;
/**
 * 产品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("审批批次码")
    private String batchCode;
    @ApiModelProperty("产品审批id")
    private Integer productApprovingId;
    @ApiModelProperty("母料编号")
    private String     parentCode;
    @ApiModelProperty("母料名称")
    private String     parentName;
    @ApiModelProperty("母料型号")
    private String     parentModel;
    @ApiModelProperty("结构件类型")
    private String type;
    @ApiModelProperty("类别")
    private String     category;
    @ApiModelProperty("子件编码")
@@ -47,11 +51,23 @@
    private String     pictureUrl;
    private String     fileUrl;
    @ApiModelProperty("上传人")
    private String     upUser;
    private Long     upUserId;
    private Date    createDate;
    private Date updateDate;
    @ApiModelProperty("版本")
    private Integer   version;
    @ApiModelProperty("工程图纸url")
    private String dwgUrl;
    @ApiModelProperty("工程图纸是否存在:0否1存在")
    @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;
@@ -59,14 +75,6 @@
    public void setId(Integer id) {
        this.id = id;
    }
    public String getBatchCode() {
        return batchCode;
    }
    public void setBatchCode(String batchCode) {
        this.batchCode = batchCode;
    }
    public String getParentCode() {
@@ -197,12 +205,12 @@
        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() {
@@ -213,14 +221,6 @@
        this.createDate = createDate;
    }
    public Date getUpdateDate() {
        return updateDate;
    }
    public void setUpdateDate(Date updateDate) {
        this.updateDate = updateDate;
    }
    public Integer getVersion() {
        return version;
    }
@@ -228,4 +228,52 @@
    public void setVersion(Integer version) {
        this.version = version;
    }
    public String getType() {
        return type;
    }
    public void setType(String type) {
        this.type = type;
    }
    public String getDwgUrl() {
        return dwgUrl;
    }
    public void setDwgUrl(String dwgUrl) {
        this.dwgUrl = dwgUrl;
    }
    public Integer getDwgExist() {
        return dwgExist;
    }
    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;
    }
}