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