equipment/equipment-service/src/main/java/com/gkhy/safePlatform/equipment/entity/SafeMaterialInfo.java
@@ -44,6 +44,14 @@ */ private Byte consumable; /** * 有效数量 */ private Integer totalCount; /** * 库存数量 */ private Integer stockCount; /** * 删除标识 */ @TableField(fill = FieldFill.INSERT) //自动填充的注解 @@ -202,5 +210,19 @@ this.updateTime = updateTime; } public Integer getTotalCount() { return totalCount; } public void setTotalCount(Integer totalCount) { this.totalCount = totalCount; } public Integer getStockCount() { return stockCount; } public void setStockCount(Integer stockCount) { this.stockCount = stockCount; } }