[feat] 添加项目跟踪

This commit is contained in:
2024-12-13 19:52:46 +08:00
parent 95c6f196eb
commit 126373b34c
21 changed files with 795 additions and 0 deletions

View File

@@ -12,4 +12,7 @@ public interface ErrorCodeConstants {
ErrorCode SUBCONTRACTOR_NOT_EXISTS = new ErrorCode(1_061_000_000, "供应商信息不存在");
ErrorCode SUBCONTRACTOR_NAME_DUPLICATE = new ErrorCode(1_061_000_001, "供应商名称重复");
ErrorCode SUBCONTRACTOR_CODE_DUPLICATE = new ErrorCode(1_061_000_002, "组织机构代码重复");
// 项目跟踪
ErrorCode PROJECT_TRACKING_NOT_EXISTS = new ErrorCode(1_062_000_000, "项目跟踪信息不存在");
}