公告板
版本库
filestore
活动
搜索
登录
main
/
TAI_OTS_FRAMEWORK
[测评系统]--测评系统核心代码库
概况
操作记录
提交次数
目录
文档
派生
对比
blame
|
历史
|
原始文档
fix:修复docker不能正常清理的问题。设置60s超时时间
wzp
2025-07-18
b6a1cee9c6fbfe0a1f8f7c410c637248e29239e5
[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;
}
}