“djh”
6 天以前 5ca4ab349909030e77354832287f2d6a2c80e119
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
package com.gkhy.exam.common.enums;
 
/**
 * 考试试卷状态
 */
public enum PaperStudentStateEnum {
    WAIT_EXAM(0, "待考试"),
    WAIT_REVIEW(1, "待批改"),
    DONE_REVIEW(2, "批改完成");
 
    private final Integer code;
    private final String info;
 
    PaperStudentStateEnum(Integer code, String info)
    {
        this.code = code;
        this.info = info;
    }
 
    public Integer getCode()
    {
        return code;
    }
 
    public String getInfo()
    {
        return info;
    }
}