1、新增查询项目参与人员接口

2、任务列表中的【所有任务】情况,添加权限校验(暂时先注释,待完成测试后正式提交发布)
This commit is contained in:
2026-01-30 06:45:32 +08:00
parent 3cf9cb692f
commit 74ec395793
7 changed files with 220 additions and 530 deletions

View File

@@ -0,0 +1,18 @@
package com.sdm.common.entity.enums;
public enum DelFlagTypeEnum {
NORMAL(0L),
DELETED(1L),
FREEZE(2L)
;
Long value;
DelFlagTypeEnum(Long i) {
value = i;
}
public Long getValue() {
return value;
}
}