公告板
版本库
filestore
活动
搜索
登录
main
/
TAI_OTS_FRAMEWORK
[测评系统]--测评系统核心代码库
概况
操作记录
提交次数
目录
文档
派生
对比
blame
|
历史
|
原始文档
优化
林致杰
2022-04-24
e678522a3e444d6fe11ea911b25578fed3d6c156
[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;
}
}