[feat] 新增客户管理模块

This commit is contained in:
2024-07-03 15:35:27 +08:00
parent 442ed6b3a9
commit 2632866955
13 changed files with 578 additions and 1 deletions

View File

@ -0,0 +1,12 @@
package cn.iocoder.yudao.module.cms.enums;
import cn.iocoder.yudao.framework.common.exception.ErrorCode;
/**
* @author hhyykk
* @description 错误码枚举类 1_020_000_000段
* @date 2024/7/3
*/
public interface ErrorCodeConstants {
ErrorCode CUSTOMER_COMPANY_NOT_EXISTS = new ErrorCode(1_020_000_000, "客户公司管理不存在");
}