API参数变更检测-修改方法入参参数-修改参数类型
All checks were successful
类变更检测 / class-change-check (push) Successful in 18s

This commit is contained in:
2026-06-09 10:03:29 +08:00
parent 7e94f75ebd
commit 1202dd95d6

View File

@@ -110,7 +110,7 @@ public class RewardsPunishmentsApproveController {
*/ */
@GetMapping("/reward/pass") @GetMapping("/reward/pass")
@NoDataSourceBind @NoDataSourceBind
public void rewardApprove(@RequestParam(value = "tenantId") String tenantId, @RequestParam(value = "applyId") String applyId, @RequestParam(value = "status") Integer status) { public void rewardApprove(@RequestParam(value = "tenantId") Integer tenantId, @RequestParam(value = "applyId") String applyId, @RequestParam(value = "status") Integer status) {
log.info("/reward/pass tenantId:{},applyId:{},status:{}",tenantId,applyId,status); log.info("/reward/pass tenantId:{},applyId:{},status:{}",tenantId,applyId,status);
checkOutTenant(tenantId); checkOutTenant(tenantId);
rewardService.rewardApprove(applyId, status); rewardService.rewardApprove(applyId, status);