@@ -5,14 +5,14 @@ import lombok.Getter;
/**
* 设备型号
*/
-public enum DeviceModel {
+public enum DeviceSpecType {
Consumer("消费机"),
;
@Getter
private String remark;
- DeviceModel(String remark) {
+ DeviceSpecType(String remark) {
this.remark = remark;
}