[feat] 增加项目与用户的关联表

This commit is contained in:
2024-07-17 19:47:32 +08:00
parent f32dd75760
commit 9e7575e9cb
11 changed files with 482 additions and 1 deletions

View File

@@ -4,9 +4,13 @@ import cn.iocoder.yudao.framework.common.exception.ErrorCode;
/**
* @author hhyykk
* @description 错误码枚举类 1_021_000_000 段
* @description 错误码枚举类
* @date 2024/7/3
*/
public interface ErrorCodeConstants {
// ============ 项目信息 =========
ErrorCode PROJECT_NOT_EXISTS = new ErrorCode(1_021_000_000, "项目信息不存在");
// ============ 项目与人员关联关系 =========
ErrorCode PROJECT_USER_NOT_EXISTS = new ErrorCode(1_022_000_000, "项目与人员关联关系不存在");
}