From d9adbadd9fa14cb7174f6167c438a45e8176fd26 Mon Sep 17 00:00:00 2001 From: SZH <szh_hello@163.com> Date: 星期四, 23 二月 2023 15:22:04 +0800 Subject: [PATCH] 数据库连接池移除druid atomikos分布式事务使用com.mysql.cj.jdbc.MysqlXADataSource --- equipment/equipment-rpc-api/src/main/java/com/gkhy/safePlatform/equipment/rpc/api/model/dto/resp/SafeMaterialClassifyRPCRespDto.java | 22 ++++++++++++++++++++++ 1 files changed, 22 insertions(+), 0 deletions(-) diff --git a/equipment/equipment-rpc-api/src/main/java/com/gkhy/safePlatform/equipment/rpc/api/model/dto/resp/SafeMaterialClassifyRPCRespDto.java b/equipment/equipment-rpc-api/src/main/java/com/gkhy/safePlatform/equipment/rpc/api/model/dto/resp/SafeMaterialClassifyRPCRespDto.java index 76ac151..e466567 100644 --- a/equipment/equipment-rpc-api/src/main/java/com/gkhy/safePlatform/equipment/rpc/api/model/dto/resp/SafeMaterialClassifyRPCRespDto.java +++ b/equipment/equipment-rpc-api/src/main/java/com/gkhy/safePlatform/equipment/rpc/api/model/dto/resp/SafeMaterialClassifyRPCRespDto.java @@ -7,6 +7,12 @@ private String materialClassifyName; private Long parentId; + /** + * 是否是耗材(0是,1否) + */ + private Byte consumable; + + private String consumableName; private List<SafeMaterialClassifyRPCRespDto> childList; @@ -41,4 +47,20 @@ public void setChildList(List<SafeMaterialClassifyRPCRespDto> childList) { this.childList = childList; } + + public Byte getConsumable() { + return consumable; + } + + public void setConsumable(Byte consumable) { + this.consumable = consumable; + } + + public String getConsumableName() { + return consumableName; + } + + public void setConsumableName(String consumableName) { + this.consumableName = consumableName; + } } -- Gitblit v1.9.2