release- 修复参数传递bug

release-2024-08-08
pikaqiudeshujia 7 months ago
parent 35ee47b668
commit e5ebdb9289

@ -89,7 +89,7 @@ public class AlbumController {
@ApiParam(value = "专辑id") @PathVariable String id,
@ApiParam(value = "想要修改的状态值 -1不可抗力原因不允许显示0新建1待审核2退回3待上架4已上架5已删除6下架")@PathVariable Integer state,
@ApiParam(value = "拒绝理由,在审批动作下,如果拒绝是必填字段") String content) {
albumService.changeAlbumState(token, id, state);
albumService.changeAlbumState(token, id, state, content);
return Result.success();
}

Loading…
Cancel
Save