Commit 458cd3f6 authored by 王淑君's avatar 王淑君

增加infoTypeEnum

parent ef8057db
package org.rcisoft.common.model;
/**
* 标准法规分类
* @author gaoyan
* date 2018/09/19
*/
public enum InfoTypeEnum {
OFFLINE_TRAIN("OFFLINE_TRAIN","线下培训提醒"),REPLY_DISCUSS("REPLY_DISCUSS","回复提醒"),
;
private String value;
private String lable;
private InfoTypeEnum(String value, String lable) {
this.value = value;
this.lable = lable;
}
public String getValue() {
return value;
}
public String getLable() {
return lable;
}
}
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