| | |
| | | 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("产品审批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("子件编码") |
| | | private String subCode; |
| | | /**子件名称*/ |
| | | @ApiModelProperty("子件名称") |
| | | private String subName; |
| | | /**子件型号*/ |
| | | @ApiModelProperty("子件型号") |
| | | private String subModel; |
| | | /**单位*/ |
| | | @ApiModelProperty("单位") |
| | | private String unit; |
| | | /**子件数量*/ |
| | | @ApiModelProperty("子件数量") |
| | | private Integer quantity; |
| | | /**生产商*/ |
| | | @ApiModelProperty("生产商") |
| | | private String producer; |
| | | /**封装类型/材质*/ |
| | | @ApiModelProperty("封装类型/材质") |
| | | private String material; |
| | | /**元件编号/料厚*/ |
| | | @ApiModelProperty("元件编号/料厚") |
| | | private String thickness; |
| | | /**表面处理/物料详情*/ |
| | | @ApiModelProperty("表面处理/物料详情") |
| | | private String surfaceDetail; |
| | | /** 备注*/ |
| | | @ApiModelProperty("备注") |
| | | private String notes; |
| | | private String pictureUrl; |
| | | private String fileUrl; |
| | | /**上传人*/ |
| | | private String upUser; |
| | | @ApiModelProperty("上传人") |
| | | 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; |
| | |
| | | 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 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; |
| | | } |
| | | } |