feat: license sn唯一性校验

This commit is contained in:
caiyuchao
2025-07-04 14:36:32 +08:00
parent a12131af17
commit f07fd94a72
5 changed files with 82 additions and 36 deletions

View File

@@ -15,4 +15,5 @@ public interface ErrorCodeConstants {
ErrorCode PROJECT_NAME_DUPLICATE = new ErrorCode(1_100_001_002, "项目名称`{}`已存在");
ErrorCode PROJECT_CODE_DUPLICATE = new ErrorCode(1_100_001_003, "项目编号`{}`已存在");
ErrorCode LICENSE_NOT_EXISTS = new ErrorCode(1_100_002_001, "License不存在");
ErrorCode LICENSE_SN_DUPLICATE = new ErrorCode(1_100_001_002, "License SN`{}`已存在");
}