From 027257f560237ce32ac93ce19b3d974f44af0843 Mon Sep 17 00:00:00 2001 From: ZOUZDC Date: Tue, 14 May 2024 12:16:20 +0800 Subject: [PATCH] =?UTF-8?q?feat:=20modbus=E9=94=99=E8=AF=AF=E7=A0=81?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 添加modbus错误码 --- .../src/main/java/cc/iotkit/common/enums/ErrCode.java | 3 +++ 1 file changed, 3 insertions(+) diff --git a/iot-common-core/src/main/java/cc/iotkit/common/enums/ErrCode.java b/iot-common-core/src/main/java/cc/iotkit/common/enums/ErrCode.java index 87aa43d..5b6a6d8 100755 --- a/iot-common-core/src/main/java/cc/iotkit/common/enums/ErrCode.java +++ b/iot-common-core/src/main/java/cc/iotkit/common/enums/ErrCode.java @@ -113,6 +113,9 @@ public enum ErrCode implements IEnum { FILE_NAME_IS_NULL(50000035, "文件名为空,获取文件名失败"), PRODUCT_KEY_EXIST(50000036, "ProductKey已存在"), DATA_ALREADY(50000037, "记录已存在"), + TEMPLATE_NAME_ALREADY(50000038, "模版名称已存在"), + RELATED_PRODUCTS_EXIST(50000039, "存在关联产品"), + TENANT_NOT_FOUND(50001001, "租户不存在"), TENANT_DISABLE(50001002, "租户已禁用"),