[fix] 优化应收款管理功能

This commit is contained in:
shl
2024-08-21 11:08:52 +08:00
parent 5a6c76f8cb
commit 84a030dc71
16 changed files with 329 additions and 95 deletions

View File

@@ -32,7 +32,10 @@ public interface ErrorCodeConstants {
// ========== 项目追踪信息不存在 1_026_000_000 ==========
ErrorCode PROJECT_TRACKING_NOT_EXISTS = new ErrorCode(1_026_000_000, "项目跟踪管理不存在");
// ========== 项目追踪信息存在 1_027_000_000 ==========
// ========== 项目追踪信息存在 1_027_000_000 ==========
ErrorCode BUDGET_ALREADY_EXISTS = new ErrorCode(1_027_000_000, "预算管理已存在");
// ========== 项目追踪信息已存在 1_027_000_000 ==========
ErrorCode RECEIVABLES_ALREADY_EXISTS = new ErrorCode(1_028_000_000, "应收款管理已存在");
}