|
|
@ -485,6 +485,33 @@ public class OperationLogAspect { |
|
|
|
if (Objects.equals(functionId, "RS")){ |
|
|
|
remark.append("令重合闸复位"); |
|
|
|
} |
|
|
|
}else if (Objects.equals(deviceType, UniversalEnum.THIRTEEN.getValue()) || Objects.equals(deviceType, UniversalEnum.SIXTEEN.getValue())) { |
|
|
|
|
|
|
|
String identification = params.getString("deviceName"); |
|
|
|
String value = params.getString("value"); |
|
|
|
|
|
|
|
if (Objects.equals(identification, "ac_out_1_en")) { |
|
|
|
|
|
|
|
remark.append("220V 输出 1").append(Objects.equals(value, UniversalEnum.ONE.getValue()) ? UniversalEnum.UNPACK.getValue() : UniversalEnum.OFF.getValue()); |
|
|
|
|
|
|
|
} else if (Objects.equals(identification, "ac_out_2_en")) { |
|
|
|
|
|
|
|
remark.append("220V 输出 2").append(Objects.equals(value, UniversalEnum.ONE.getValue()) ? UniversalEnum.UNPACK.getValue() : UniversalEnum.OFF.getValue()); |
|
|
|
|
|
|
|
} else if (Objects.equals(identification, "dc_out_1_en")) { |
|
|
|
|
|
|
|
remark.append("12V 输出 1").append(Objects.equals(value, UniversalEnum.ONE.getValue()) ? UniversalEnum.UNPACK.getValue() : UniversalEnum.OFF.getValue()); |
|
|
|
|
|
|
|
} else if (Objects.equals(identification, "dc_out_2_en")) { |
|
|
|
|
|
|
|
remark.append("12V 输出 2").append(Objects.equals(value, UniversalEnum.ONE.getValue()) ? UniversalEnum.UNPACK.getValue() : UniversalEnum.OFF.getValue()); |
|
|
|
|
|
|
|
} else if (Objects.equals(identification, "fan_out_en")) { |
|
|
|
|
|
|
|
remark.append("风扇").append(Objects.equals(value, UniversalEnum.ONE.getValue()) ? UniversalEnum.UNPACK.getValue() : UniversalEnum.OFF.getValue()); |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|