|
|
@ -492,19 +492,19 @@ public class OperationLogAspect { |
|
|
|
|
|
|
|
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()); |
|
|
|
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()); |
|
|
|
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()); |
|
|
|
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()); |
|
|
|
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")) { |
|
|
|
|
|
|
@ -677,22 +677,25 @@ public class OperationLogAspect { |
|
|
|
|
|
|
|
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()); |
|
|
|
|
|
|
|
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()); |
|
|
|
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()); |
|
|
|
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()); |
|
|
|
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()); |
|
|
|
|
|
|
|
} |
|
|
|