公告板
版本库
filestore
活动
搜索
登录
main
/
TAI_OTS_FRAMEWORK
[测评系统]--测评系统核心代码库
概况
操作记录
提交次数
目录
文档
派生
对比
blame
|
历史
|
原始文档
feat: 新增第三方接口访问
wzp
2025-08-01
95eb8a2a75cbeebcb3393d404c1952bd59b8989a
[TAI_OTS_FRAMEWORK.git]
/
src
/
main
/
java
/
com
/
ots
/
common
/
enums
/
ExamPaperQuestion.java
1
2
3
4
5
6
7
8
9
10
package com.ots.common.enums;
import lombok.Getter;
@Getter
public enum ExamPaperQuestion {
permanentIdDuplicate(-2);
private int type;
ExamPaperQuestion(int type) {
this.type = type;
}
}