Commit bfdadea5 authored by Quxl's avatar Quxl

x

parent cb971dda
...@@ -114,8 +114,10 @@ public class CinemaController { ...@@ -114,8 +114,10 @@ public class CinemaController {
@ApiImplicitParam(paramType="query", name="cinema_id", value="影院放映厅ID"), @ApiImplicitParam(paramType="query", name="cinema_id", value="影院放映厅ID"),
@ApiImplicitParam(paramType="query", name="show_date", value="排片日期", allowMultiple=true), @ApiImplicitParam(paramType="query", name="show_date", value="排片日期", allowMultiple=true),
@ApiImplicitParam(paramType="query", name="show_time", value="排片时间", allowMultiple=true), @ApiImplicitParam(paramType="query", name="show_time", value="排片时间", allowMultiple=true),
@ApiImplicitParam(paramType="query", name="ticket_price", value="票价"),
@ApiImplicitParam(paramType="query", name="is_important", value="重点场次 0否 1是"),
}) })
public Object saveShowtime(Integer cinema_id, @DateTimeFormat(pattern="yyyy-MM-dd")Date[] show_date, String[] show_time, Double ticket_price, Integer is_important) { public Object saveShowtime(Integer cinema_id, @DateTimeFormat(pattern="yyyy-MM-dd")Date[] show_date, String[] show_time, String ticket_price, Integer is_important) {
Date now = new Date(); Date now = new Date();
List<Object> list = new ArrayList<Object>(); List<Object> list = new ArrayList<Object>();
for(Date date : show_date) { for(Date date : show_date) {
......
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