“djh”
2025-07-07 4d081649e2d6712ccc1bb14080e600f0d89b8cd9
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;
    }
}