[测评系统]--测评系统核心代码库
linzhijie
2021-03-11 3cfd98ba9e99e68b9ff43e35a8befd90a48e1ab7
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
package com.ots.common.enums;
public enum QuestionStatusEnum {
    OK(1, "正常"),
    Publish(2, "发布");
    int code;
    String name;
    QuestionStatusEnum(int code, String name) {
        this.code = code;
        this.name = name;
    }
    public int getCode() {
        return code;
    }
    public void setCode(int code) {
        this.code = code;
    }
    public String getName() {
        return name;
    }
    public void setName(String name) {
        this.name = name;
    }
}