whyclxw
3 天以前 cf9a5039e6db9d1d5963e3fe1a37d00169ec2ef7
src/main/java/com/whyc/pojo/ProductBomHistory.java
@@ -11,7 +11,7 @@
/**
 * 产品bom表历史记录
 */
@TableName(schema = "db_doc",value = "tb_product_bom_history")
@TableName(value = "tb_product_bom_history")
@Alias("ProductBomHistory")
public class ProductBomHistory {
@@ -34,7 +34,6 @@
    private String type;
    @ApiModelProperty("类别")
    @TableField(exist = false)
    private String     category;
    @ApiModelProperty("子件编码")
@@ -57,23 +56,21 @@
    private Integer   quantity;
    @ApiModelProperty("生产商")
    @TableField(exist = false)
    private String     producer;
    @ApiModelProperty("厂家规格")
    private String producerSpecification;
    @ApiModelProperty("封装类型/材质")
    @TableField(exist = false)
    private String     material;
    @ApiModelProperty("元件编号/料厚")
    @TableField(exist = false)
    private String     thickness;
    @ApiModelProperty("表面处理/物料详情")
    @TableField(exist = false)
    private String     surfaceDetail;
    @ApiModelProperty("备注")
    @TableField(exist = false)
    private String     notes;
    @TableField(exist = false)
@@ -113,9 +110,6 @@
    @ApiModelProperty(value = "是否是bom的管理,excel导出有用,0:原件,1:关联件")
    private Integer connFlag;
    @TableField(exist = false)
    @ApiModelProperty(value = "丝印锁定信息")
    private List<AttachLock> attachLocks;
    public Integer getId() {
        return id;
@@ -341,11 +335,11 @@
        this.connFlag = connFlag;
    }
    public List<AttachLock> getAttachLocks() {
        return attachLocks;
    public String getProducerSpecification() {
        return producerSpecification;
    }
    public void setAttachLocks(List<AttachLock> attachLocks) {
        this.attachLocks = attachLocks;
    public void setProducerSpecification(String producerSpecification) {
        this.producerSpecification = producerSpecification;
    }
}