This commit is contained in:
张良(004796)
2024-04-18 18:47:03 +08:00
parent 14cd347ee8
commit 43eaa1f1be
11 changed files with 308 additions and 1 deletions

View File

@@ -0,0 +1,18 @@
package com.ruoyi.xq.enums.other;
import lombok.Getter;
@Getter
public enum FeedbackReportStatusEnum {
NO_DEAL(0,"未处理"),
SUCCESS(1,"已处理"),
;
private final Integer code;
private final String text;
FeedbackReportStatusEnum(Integer code, String text) {
this.code = code;
this.text = text;
}
}