取消uplaoder 岗位

This commit is contained in:
wh
2026-04-23 12:27:44 +08:00
parent cbef58aee5
commit 9483bea005
7 changed files with 8 additions and 12 deletions

View File

@@ -6,13 +6,9 @@ import lombok.RequiredArgsConstructor;
@Getter
@RequiredArgsConstructor
@Schema(description = "岗位枚举,枚举值:UPLOADER上传者、ANNOTATOR标注员、DATA_TRAINER数据训练师、REVIEWER审核员、ADMIN超级管理员")
@Schema(description = "岗位枚举枚举值ANNOTATOR标注员、DATA_TRAINER数据训练师、REVIEWER审核员、ADMIN超级管理员")
public enum UserPosition {
UPLOADER(1),
ANNOTATOR(2),
DATA_TRAINER(3),
REVIEWER(4),
ADMIN(5);
ANNOTATOR(1), DATA_TRAINER(2), REVIEWER(3), ADMIN(4);
private final int level;