Compare commits

..

No commits in common. "622504aff451e3df5a19d138597ec744b69e8734" and "37a439b624c5bf5be74bec943436a6b165a9ab4b" have entirely different histories.

2 changed files with 1 additions and 52 deletions

View File

@ -1,51 +0,0 @@
package com.ruoyi.device.api.enums;
/**
* 舱门状态枚举
*
* @author ruoyi
* @date 2026-01-21
*/
public enum CabinDoorStatusEnum {
/**
* 关闭
*/
CLOSED("CLOSED", "关闭"),
/**
* 打开
*/
OPEN("OPEN", "打开"),
/**
* 半开
*/
HALF_OPEN("HALF_OPEN", "半开"),
/**
* 舱盖状态异常
*/
ABNORMAL("ABNORMAL", "舱盖状态异常");
private final String code;
private final String description;
CabinDoorStatusEnum(String code, String description) {
this.code = code;
this.description = description;
}
public String getCode() {
return code;
}
public String getDescription() {
return description;
}
@Override
public String toString() {
return code;
}
}

@ -1 +1 @@
Subproject commit ec5dba7fc59bafbfb8d2c52224adb9fec6be31e5
Subproject commit 372a289cf7bdfcd2236fb7c72ca374673d408e70