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

This commit is contained in:
2026-06-09 10:00:11 +08:00
parent 25316a6f61
commit 7e94f75ebd

View File

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