update 保存提现记录

This commit is contained in:
Guoqs
2025-04-02 13:56:08 +08:00
parent 38469d1925
commit d697b5092f
3 changed files with 806 additions and 6 deletions

View File

@@ -376,7 +376,7 @@ public class TempController extends BaseController {
*/
@PostMapping("/generateMerchantBill")
public RestApiResponse<?> generateMerchantBill(@RequestBody QueryOrderDTO dto) {
logger.info("手动接口执行订单分账逻辑-param:{}", JSON.toJSONString(dto));
logger.info("手动生成运营商日报-param:{}", JSON.toJSONString(dto));
RestApiResponse<?> response = null;
try {
// 查询运营商列表
@@ -394,7 +394,7 @@ public class TempController extends BaseController {
try {
orderBasicInfoService.generateMerchantBill(merchantId, tradeDate);
} catch (Exception e) {
logger.error("生成运营商日报异常, merchantId:{}", merchantId, e);
logger.error("手动生成运营商日报, merchantId:{}", merchantId, e);
}
});
}