讨论,发送类型枚举
parent
515c69a3ff
commit
5d7a3279b1
@ -0,0 +1,17 @@
|
|||||||
|
package com.ibeetl.jlw.enums;
|
||||||
|
|
||||||
|
import lombok.AllArgsConstructor;
|
||||||
|
import lombok.Getter;
|
||||||
|
import org.beetl.sql.annotation.entity.EnumMapping;
|
||||||
|
|
||||||
|
@Getter
|
||||||
|
@AllArgsConstructor
|
||||||
|
@EnumMapping("name")
|
||||||
|
public enum ChatLogSendTypeEnum {
|
||||||
|
|
||||||
|
normal("普通回复"),
|
||||||
|
student_ask("学生提问"),
|
||||||
|
teacher_ask("教师提问");
|
||||||
|
|
||||||
|
private String text;
|
||||||
|
}
|
Loading…
Reference in New Issue