123
This commit is contained in:
@@ -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;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user