API参数变更检测-修改方法入参参数-修改参数类型
All checks were successful
类变更检测 / class-change-check (push) Successful in 18s
All checks were successful
类变更检测 / class-change-check (push) Successful in 18s
This commit is contained in:
@@ -110,7 +110,7 @@ public class RewardsPunishmentsApproveController {
|
||||
*/
|
||||
@GetMapping("/reward/pass")
|
||||
@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);
|
||||
checkOutTenant(tenantId);
|
||||
rewardService.rewardApprove(applyId, status);
|
||||
|
||||
Reference in New Issue
Block a user