1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
| package com.ycl.jxkg.constants;
|
| /**
| * 成绩状态
| *
| * @author:flq
| * @date:2024/7/10 11:36
| */
| public class ExamScoreConstant {
|
| /**
| * 考了
| *
| */
| public final static Integer PRESENT = 0;
|
| /**
| * 缺考
| *
| */
| public final static Integer ABSENT =1;
| }
|
|