计划曲线下发问题处理

This commit is contained in:
2025-08-12 16:50:18 +08:00
parent b0751a55cd
commit c04c764ade

View File

@ -163,12 +163,7 @@ public class OrderSendController {
return DataResult.success(heartbeatResp);
}
log.info("指令下发正常开始下发");
List<String> snList = MqttConfigUtil.getSnList();
if(snList.contains(sn)){
orderSendService.orderIssued(vo);
}else{
anotherOrderSendService.orderIssued(vo);
}
orderSendService.orderIssued(vo);
if(vo.getPlanTemId() != null){
String hourValue ="";
String minuteValue ="";
@ -332,14 +327,7 @@ public class OrderSendController {
// @LogAnnotation(title = "命令下发曲线", action = "命令下发曲线")
@TokenIgnore
public DataResult<HeartbeatResp> sendPlanPowerOrder(@RequestBody OrderPlanPowerReq vo) {
String sn = vo.getSn();
List<String> snList = MqttConfigUtil.getSnList();
HeartbeatResp heartbeatResp = null;
if(snList.contains(sn)){
heartbeatResp = orderSendService.sendPlanPowerOrder(vo);
}else{
heartbeatResp = anotherOrderSendService.sendPlanPowerOrder(vo);
}
HeartbeatResp heartbeatResp = orderSendService.sendPlanPowerOrder(vo);
return DataResult.success(heartbeatResp);
}