1、新增查询项目参与人员接口
2、任务列表中的【所有任务】情况,添加权限校验(暂时先注释,待完成测试后正式提交发布)
This commit is contained in:
@@ -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;
|
||||
}
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user