diff --git a/yudao-module-customer/src/main/java/cn/iocoder/yudao/module/cus/enums/ErrorCodeConstants.java b/yudao-module-customer/src/main/java/cn/iocoder/yudao/module/cus/enums/ErrorCodeConstants.java new file mode 100644 index 0000000..c9701cd --- /dev/null +++ b/yudao-module-customer/src/main/java/cn/iocoder/yudao/module/cus/enums/ErrorCodeConstants.java @@ -0,0 +1,16 @@ +package cn.iocoder.yudao.module.cus.enums; + +import cn.iocoder.yudao.framework.common.exception.ErrorCode; + +/** + * ERP 错误码枚举类 + *

+ * erp 系统,使用 1-030-000-000 段 + */ +public interface ErrorCodeConstants { + + // ========== 管理客户页面 (1-030-100-000) ========== + ErrorCode MANAGEMENT_NOT_EXISTS = new ErrorCode(1_030_100_000, "客户不存在"); + + +}