From f7d2f20365467a834188edd35c464d9fb9349214 Mon Sep 17 00:00:00 2001 From: zhangfeng <1603559716@qq.com> Date: 星期五, 23 十二月 2022 08:53:43 +0800 Subject: [PATCH] 安全物资和设备管理调整v2 --- equipment/equipment-service/src/main/java/com/gkhy/safePlatform/equipment/entity/SafeMaterialDO.java | 30 ++++++++++++++++++++++++++++++ 1 files changed, 30 insertions(+), 0 deletions(-) diff --git a/equipment/equipment-service/src/main/java/com/gkhy/safePlatform/equipment/entity/SafeMaterialDO.java b/equipment/equipment-service/src/main/java/com/gkhy/safePlatform/equipment/entity/SafeMaterialDO.java index fcc9cdd..3f0df27 100644 --- a/equipment/equipment-service/src/main/java/com/gkhy/safePlatform/equipment/entity/SafeMaterialDO.java +++ b/equipment/equipment-service/src/main/java/com/gkhy/safePlatform/equipment/entity/SafeMaterialDO.java @@ -25,6 +25,7 @@ private String bigClassifyName; private Long smallClassifyId; + private String smallClassifyName; /** * 部门id */ @@ -37,6 +38,11 @@ * 物资名称 */ private String materialName; + /** + * + */ + private Integer totalCount; + private Integer stockCount; /** * 是否是耗材(0是, 1否) */ @@ -209,4 +215,28 @@ public void setSmallClassifyId(Long smallClassifyId) { this.smallClassifyId = smallClassifyId; } + + public String getSmallClassifyName() { + return smallClassifyName; + } + + public void setSmallClassifyName(String smallClassifyName) { + this.smallClassifyName = smallClassifyName; + } + + 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; + } } -- Gitblit v1.9.2