master:档口查看推广营销驳回理由调整;

pull/1121/head
liujiang 2025-09-10 23:15:46 +08:00
parent 062f10b55b
commit 434e1aa2ef
1 changed files with 2 additions and 2 deletions

View File

@ -128,8 +128,8 @@ public class AdvertRoundController extends XktBaseController {
}
@PreAuthorize("@ss.hasAnyRoles('admin,general_admin,store')||@ss.hasSupplierSubRole()")
@ApiOperation(value = "查看图片审核拒绝理由", httpMethod = "PUT", response = R.class)
@PutMapping("/reject-reason/{advertRoundId}")
@ApiOperation(value = "查看图片审核拒绝理由", httpMethod = "GET", response = R.class)
@GetMapping("/reject-reason/{advertRoundId}")
public R<String> getRejectReason(@PathVariable Long advertRoundId) {
return R.ok(advertRoundService.getRejectReason(advertRoundId));
}