Commit 3f2b7302 by 陶光胜

二维码

parent de99bf69
package com.gic.enterprise.constant;
/**
*
* @Description:
* @author zhiwj
* @date 2019-10-24 20:46
*/
public enum ThemeEnum {
BLACK_BLUE(1, "black-blue"),
RED(2, "red"),
BLACK_GOLDEN(3, "black-golden"),
DARK_GREEN(4, "dark_green"),
TINT_GREEN(5, "tint_green")
;
private Integer code;
private String msg;
ThemeEnum(Integer code, String msg) {
this.code = code;
this.msg = msg;
}
public Integer getCode() {
return code;
}
public String getMsg() {
return msg;
}
}
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment