This commit is contained in:
张良(004796)
2024-02-06 16:56:03 +08:00
parent c827dbc0aa
commit 90356b55c8
40 changed files with 622 additions and 121 deletions

View File

@@ -8,7 +8,7 @@ import lombok.Getter;
* @author 77
*/
@Getter
public enum ImTypeEnum {
public enum YxImTypeEnum {
TXT(0,"文本消息"),
IMAGE(1,"图片消息"),
VOICE(2,"语音消息"),
@@ -21,7 +21,7 @@ public enum ImTypeEnum {
private final Integer code;
private final String text;
ImTypeEnum(Integer code, String text) {
YxImTypeEnum(Integer code, String text) {
this.code = code;
this.text = text;
}