更新钱包code为空的数据

This commit is contained in:
Guoqs
2025-07-24 14:55:56 +08:00
parent ef55dd04af
commit e418ce562a
6 changed files with 112 additions and 33 deletions

View File

@@ -928,4 +928,21 @@ public class TempController extends BaseController {
logger.info("时间区间查询订单统计 result:{}", response);
return response;
}
/**
* 更新钱包code为空的数据
* http://localhost:8080/temp/updateWalletCode
*/
@PostMapping("/updateWalletCode")
public RestApiResponse<?> updateWalletCode() {
RestApiResponse<?> response = null;
try {
tempService.updateWalletCode();
response = new RestApiResponse<>();
} catch (Exception e) {
logger.error("更新钱包code为空数据 error", e);
}
logger.info("更新钱包code为空数据 result:{}", response);
return response;
}
}