| | |
| | | package com.whyc.pojo; |
| | | |
| | | import com.baomidou.mybatisplus.annotation.IdType; |
| | | import com.baomidou.mybatisplus.annotation.TableId; |
| | | import com.baomidou.mybatisplus.annotation.TableName; |
| | | import io.swagger.annotations.ApiModelProperty; |
| | | import org.apache.ibatis.type.Alias; |
| | | |
| | | import java.io.Serializable; |
| | | import java.util.Date; |
| | | |
| | | /** |
| | |
| | | */ |
| | | @TableName(schema = "db_doc",value = "tb_product_bom") |
| | | @Alias("ProductBom") |
| | | public class ProductBom { |
| | | public class ProductBom implements Serializable { |
| | | private static final long serialVersionUID = 1L; |
| | | |
| | | @TableId(value = "id", type = IdType.AUTO) |
| | | private Integer id; |
| | | /**母料编号*/ |
| | | |
| | | @ApiModelProperty(value = "母料编号") |
| | | private String parentCode; |
| | | /**母料名称*/ |
| | | |
| | | @ApiModelProperty(value = "母料名称") |
| | | private String parentName; |
| | | /**母料型号*/ |
| | | |
| | | @ApiModelProperty(value = "母料型号") |
| | | private String parentModel; |
| | | /** 类别*/ |
| | | |
| | | @ApiModelProperty(value = "类别") |
| | | private String category; |
| | | /**子件编码*/ |
| | | |
| | | @ApiModelProperty(value = "子件编码") |
| | | private String subCode; |
| | | /**子件名称*/ |
| | | |
| | | @ApiModelProperty(value = "子件名称") |
| | | private String subName; |
| | | /**子件型号*/ |
| | | |
| | | @ApiModelProperty(value = "子件型号") |
| | | private String subModel; |
| | | /**单位*/ |
| | | |
| | | @ApiModelProperty(value = "单位") |
| | | private String unit; |
| | | /**子件数量*/ |
| | | |
| | | @ApiModelProperty(value = "子件数量") |
| | | private Integer quantity; |
| | | /**生产商*/ |
| | | |
| | | @ApiModelProperty(value = "生产商") |
| | | private String producer; |
| | | /**封装类型/材质*/ |
| | | |
| | | @ApiModelProperty(value = "封装类型/材质") |
| | | private String material; |
| | | /**元件编号/料厚*/ |
| | | |
| | | @ApiModelProperty(value = "元件编号/料厚") |
| | | private String thickness; |
| | | /**表面处理/物料详情*/ |
| | | |
| | | @ApiModelProperty(value = "表面处理/物料详情") |
| | | private String surfaceDetail; |
| | | /** 备注*/ |
| | | |
| | | @ApiModelProperty(value = "备注") |
| | | private String notes; |
| | | private String pictureUrl; |
| | | private String fileUrl; |
| | | /**上传人*/ |
| | | |
| | | @ApiModelProperty(value = "上传人") |
| | | private String upUser; |
| | | private Date createDate; |
| | | private Date updateDate; |
| | | /**版本*/ |
| | | |
| | | @ApiModelProperty(value = "版本") |
| | | private Integer version; |
| | | |
| | | public Integer getId() { |