“djh”
6 天以前 99132a43bf344f2aafdd9894b0762d2eedd9767b
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
package com.gkhy.exam.common.enums;
 
public enum CodeTypeEnum {
    EXAM_PAPER("exampaper", "考卷"),
    COUSE_PHASE("coursephase", "课程批次");
 
    private final String code;
    private final String info;
 
    CodeTypeEnum(String code, String info)
    {
        this.code = code;
        this.info = info;
    }
 
    public String getCode()
    {
        return code;
    }
 
    public String getInfo()
    {
        return info;
    }
}