Commit 060b2a23 authored by Quxl's avatar Quxl

x

parent afe2e558
......@@ -143,7 +143,7 @@ public class CinemaController {
@ResponseBody
@PostMapping("deleteShowtimeByShowtime")
@ApiOperation("编辑场次")
@ApiOperation("删除场次(按播放时间彻底删除)")
public Object deleteShowtimeByShowtime(Integer cinema_id, String show_time) {
service.deleteShowtimeByShowtime(cinema_id, show_time);
return Rjx.jsonOk();
......@@ -151,7 +151,7 @@ public class CinemaController {
@ResponseBody
@PostMapping("deleteShowtimeByShowdate")
@ApiOperation("编辑场次")
@ApiOperation("删除场次(按播放日期彻底删除)")
public Object deleteShowtimeByShowdate(Integer cinema_id, @DateTimeFormat(pattern="yyyy-MM-dd")Date show_date) {
service.deleteShowtimeByShowdate(cinema_id, show_date);
return Rjx.jsonOk();
......@@ -159,7 +159,7 @@ public class CinemaController {
@ResponseBody
@PostMapping("deleteShowtimeById")
@ApiOperation("编辑场次")
@ApiOperation("按ID删除单个场次(逻辑删除)")
public Object deleteShowtimeById(Integer id) {
service.deleteShowtimeById(id);
return Rjx.jsonOk();
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment