Commit 952b598576a08ac40d302d85cd2e49dcba56b5d8
1 parent
33c5f888
fix(usr): 修复 review round 2 must-fix REQ-USR-001
- EMPLOYEE_NOT_FOUND 值恢复为规格文档规定的 40001
Showing
1 changed file
with
1 additions
and
1 deletions
backend/src/main/java/com/example/erp/common/constants/UsrErrorCode.java
| @@ -5,7 +5,7 @@ public final class UsrErrorCode { | @@ -5,7 +5,7 @@ public final class UsrErrorCode { | ||
| 5 | public static final int PERMISSION_DENIED = 40300; | 5 | public static final int PERMISSION_DENIED = 40300; |
| 6 | public static final int USERNAME_EXISTS = 40901; | 6 | public static final int USERNAME_EXISTS = 40901; |
| 7 | public static final int USER_CODE_EXISTS = 40902; | 7 | public static final int USER_CODE_EXISTS = 40902; |
| 8 | - public static final int EMPLOYEE_NOT_FOUND = 40401; | 8 | + public static final int EMPLOYEE_NOT_FOUND = 40001; |
| 9 | 9 | ||
| 10 | private UsrErrorCode() {} | 10 | private UsrErrorCode() {} |
| 11 | } | 11 | } |