version:3.2.0

fix:优化管控逻辑
update:
This commit is contained in:
2024-01-04 11:44:53 +08:00
parent 576419bbf2
commit ac0ec1feee
12 changed files with 541 additions and 136 deletions

View File

@@ -98,9 +98,9 @@ public class TimeControlManager {
return null;
} else {
Gson gson = new Gson();
Type Type = new TypeToken<MachineControl>() {
Type type = new TypeToken<MachineControl>() {
}.getType();
MachineControl machineControl = gson.fromJson(jsonString, Type);
MachineControl machineControl = gson.fromJson(jsonString, type);
return machineControl;
}
} else {