This commit is contained in:
张良(004796)
2024-02-02 16:07:33 +08:00
parent f33fd87204
commit 917b421fb0
14 changed files with 431 additions and 11 deletions

View File

@@ -0,0 +1,19 @@
package com.ruoyi.cai.enums.version;
import lombok.Getter;
// 1.android 2.ios
@Getter
public enum VersionPlatformEnum {
ANDROID(1,"安卓"),
IOS(2,"ios"),
;
private final Integer code;
private final String text;
VersionPlatformEnum(Integer code, String text) {
this.code = code;
this.text = text;
}
}