Fixiaobai
2023-09-04 dd2554435b9ced61e2a6a06627145fca3bf2685b
standard-server/src/main/java/com/yuanchu/limslaboratory/pojo/Product.java
@@ -66,5 +66,20 @@
    @ApiModelProperty(value = "关联 型号id", example = "1", hidden = true)
    private Integer specifications_id;
    public Product() {
    }
    public Product(Integer id, String name, String father, String unit, String required, String internal, Integer state, Date createTime, Date updateTime, Integer version, Integer specifications_id) {
        this.id = id;
        this.name = name;
        this.father = father;
        this.unit = unit;
        this.required = required;
        this.internal = internal;
        this.state = state;
        this.createTime = createTime;
        this.updateTime = updateTime;
        this.version = version;
        this.specifications_id = specifications_id;
    }
}