| | |
| | | package com.whyc.pojo; |
| | | |
| | | import com.baomidou.mybatisplus.annotation.TableName; |
| | | import io.swagger.annotations.ApiModelProperty; |
| | | import org.apache.ibatis.type.Alias; |
| | | |
| | | import java.util.Date; |
| | |
| | | public class ProductBomApproving { |
| | | |
| | | private Integer id; |
| | | /**母料编号*/ |
| | | @ApiModelProperty("审批批次码") |
| | | private String batchCode; |
| | | @ApiModelProperty("母料编号") |
| | | private String parentCode; |
| | | /**母料名称*/ |
| | | @ApiModelProperty("母料名称") |
| | | private String parentName; |
| | | /**母料型号*/ |
| | | @ApiModelProperty("母料型号") |
| | | private String parentModel; |
| | | /** 类别*/ |
| | | @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; |
| | | /**上传人*/ |
| | | @ApiModelProperty("上传人") |
| | | private String upUser; |
| | | private Date createDate; |
| | | private Date updateDate; |
| | | /**版本*/ |
| | | @ApiModelProperty("版本") |
| | | private Integer version; |
| | | |
| | | public Integer getId() { |
| | |
| | | this.id = id; |
| | | } |
| | | |
| | | public String getBatchCode() { |
| | | return batchCode; |
| | | } |
| | | |
| | | public void setBatchCode(String batchCode) { |
| | | this.batchCode = batchCode; |
| | | } |
| | | |
| | | public String getParentCode() { |
| | | return parentCode; |
| | | } |