feat:新增单位模块

This commit is contained in:
zhouz
2026-07-15 10:30:23 +08:00
parent f6950471bf
commit 1078563df2
18 changed files with 1116 additions and 319 deletions

View File

@@ -14,4 +14,7 @@ public interface ErrorCodeConstants {
ErrorCode CLASSSTANDARD_PARENT_ERROR = new ErrorCode(5, "不能设置自己为父分类");
ErrorCode CLASSSTANDARD_PARENT_IS_CHILD = new ErrorCode(6, "不能设置自己的子分类为父分类");
ErrorCode CLASSSTANDARD_EXISTS_CHILDREN = new ErrorCode(7, "存在子分类,无法删除");
// ========== 计量单位 ==========
ErrorCode MEASURE_UNIT_NOT_EXISTS = new ErrorCode(8, "计量单位不存在");
}