zhangfeng
2022-12-23 f7d2f20365467a834188edd35c464d9fb9349214
equipment/equipment-service/src/main/java/com/gkhy/safePlatform/equipment/model/dto/resp/SafeMaterialDto.java
@@ -42,7 +42,13 @@
    /**
     * 有效库存数量
     */
    private Integer validStockCount;
    private Integer stockCount;
    /**
     * 总库存
     * @return
     */
    private Integer totalCount;
    public Long getId() {
        return id;
@@ -102,12 +108,20 @@
        this.consumableName = consumableName;
    }
    public Integer getValidStockCount() {
        return validStockCount;
    public Integer getStockCount() {
        return stockCount;
    }
    public void setValidStockCount(Integer validStockCount) {
        this.validStockCount = validStockCount;
    public void setStockCount(Integer stockCount) {
        this.stockCount = stockCount;
    }
    public Integer getTotalCount() {
        return totalCount;
    }
    public void setTotalCount(Integer totalCount) {
        this.totalCount = totalCount;
    }
    public Long getBigClassifyId() {