添加枚举解释
This commit is contained in:
parent
24299d7d25
commit
e942018c3f
|
|
@ -130,14 +130,16 @@ public class DockDetailVO extends DockVO {
|
|||
/**
|
||||
* 空调状态
|
||||
*/
|
||||
@Schema(description = "空调状态")
|
||||
@Schema(description = "空调状态: IDLE-空闲模式, COOLING-制冷模式, HEATING-制热模式, DEHUMIDIFYING-除湿模式",
|
||||
allowableValues = {"IDLE", "COOLING", "HEATING", "DEHUMIDIFYING"})
|
||||
@Excel(name = "空调状态")
|
||||
private String airConditionerStatus;
|
||||
|
||||
/**
|
||||
* 舱门状态
|
||||
*/
|
||||
@Schema(description = "舱门状态")
|
||||
@Schema(description = "舱门状态: CLOSED-关闭, OPEN-打开, HALF_OPEN-半开, ABNORMAL-舱盖状态异常",
|
||||
allowableValues = {"CLOSED", "OPEN", "HALF_OPEN", "ABNORMAL"})
|
||||
@Excel(name = "舱门状态")
|
||||
private String cabinDoorStatus;
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue