@@ -8,8 +8,9 @@ import org.jeecg.common.system.annotation.EnumDict;
@EnumDict("ReplyStatus")
public enum ReplyStatusEnum {
// 0-投诉吐槽;1-功能异常;2-用户体验;3-功能建议;4-其他
- REPLIED(0, "已回复"),
- NO_REPLY(1, "未回复");
+ NO_REPLY(0, "未回复"),
+ REPLIED(1, "已回复"),
+ ;
Integer code;
String name;