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