提交 e0d87294 authored 作者: yangzhenguang's avatar yangzhenguang

--no commit message

上级 75c9790c
package com.zrqx.core.enums.talk;
/**
* 讨论类型
*
*/
public enum TalkType {
PIGDISEASE(0,"问猪病"),
HOTPOST(1,"热帖"),
OPENCLASS(1,"公开课");
private final Integer value;
private final String description;
private TalkType(Integer value, String description) {
this.value = value;
this.description = description;
}
public Integer getValue() {
return value;
}
public String getDescription() {
return description;
}
}
Markdown 格式
0%
您添加了 0 到此讨论。请谨慎行事。
请先完成此评论的编辑!
注册 或者 后发表评论