大屏枚举

This commit is contained in:
zzz
2025-12-15 16:26:09 +08:00
parent 834601daa8
commit ffe6642d1c

View File

@ -0,0 +1,21 @@
package org.dromara.bigscreen.enums;
public class DpEnum {
private final String TypeName;
private final String TypeValue;
public String getTypeName() {
return TypeName;
}
public String getTypeValue() {
return TypeValue;
}
DpEnum(String TypeName, String TypeValue) {
this.TypeName = TypeName;
this.TypeValue = TypeValue;
}
}