格式化

This commit is contained in:
Guoqs
2025-02-13 14:00:09 +08:00
parent e0ae782e51
commit db25d8fb94

View File

@@ -179,7 +179,7 @@ public class JsowellTask {
/**
* 贵州省平台推送充电站实时功率
*/
public void pushStationRealTimePowerInfo(){
public void pushStationRealTimePowerInfo() {
// 查询出要推送的站点(贵州、)
String thirdPartyType = ThirdPlatformTypeEnum.GUI_ZHOU_PLATFORM.getTypeCode();
List<StationInfoVO> stationInfoVOS = thirdPartyStationRelationService.selectStationList(thirdPartyType);
@@ -217,7 +217,7 @@ public class JsowellTask {
// 调分账方法
pileMerchantInfos.parallelStream().forEach(merchant -> {
try {
orderBasicInfoService.orderSplittingOperations(merchant.getId()+"", yesterday.toString());
orderBasicInfoService.orderSplittingOperations(merchant.getId() + "", yesterday.toString());
} catch (Exception e) {
log.error("处理订单分账异常, merchantId:{}", merchant.getId(), e);
}
@@ -225,6 +225,9 @@ public class JsowellTask {
// TODO 换为实时分账后, 此方法改为 自动提现并计算前一天的分账信息
// pileMerchantInfos.parallelStream().forEach(merchant -> {
// automaticPayouts(merchant.getId() + "");
// });
}
/**