AuditStatusEnum.java 689 Bytes
Newer Older
liqin's avatar
liqin committed
1 2 3 4 5 6 7 8 9
package cn.wisenergy.chnmuseum.party.common.enums;

/**
 * 审核状态
 */
public enum AuditStatusEnum {

    TBC("1", "待审核"),
    REFUSED("2", "已驳回"),
liqin's avatar
liqin committed
10
    APPROVED_FIRST("3", "初审通过");
liqin's avatar
liqin committed
11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39

    // 错误编码
    private String code;
    // 信息
    private String msg;

    // 相应编码有参构造函数
    AuditStatusEnum(String code, String msg) {
        this.code = code;
        this.msg = msg;
    }

    public String getCode() {
        return code;
    }

    public void setCode(String code) {
        this.code = code;
    }

    public String getMsg() {
        return msg;
    }

    public void setMsg(String msg) {
        this.msg = msg;
    }

}