feat: add equipment category enum

This commit is contained in:
chiguyong 2026-03-23 23:51:41 +08:00
parent 527b9247e8
commit f66dc05c2f
1 changed files with 22 additions and 0 deletions

View File

@ -0,0 +1,22 @@
package com.ether.pms.mdm.enums;
public enum EquipmentCategory {
HVAC("暖通空调"),
ELECTRICAL("电气设备"),
FIRE("消防设备"),
ELEVATOR("电梯设备"),
SECURITY("安防设备"),
WATER_DRAINAGE("给排水设备"),
LIGHTING("照明设备"),
SPECIAL("特种设备");
private final String desc;
EquipmentCategory(String desc) {
this.desc = desc;
}
public String getDesc() {
return desc;
}
}