Commit 03ec52eb authored by Quxl's avatar Quxl

x

parent 55502241
......@@ -158,6 +158,8 @@ public class CinemaController {
public Object getShowtimeList(Integer cinema_id, Date start_date, Date end_date) {
if(start_date == null) {
start_date = DateUtil.start(new Date());
} else {
start_date = DateUtil.start(start_date);
}
List<Map<String, Object>> list = service.queryShowtimeList(cinema_id, start_date, end_date);
List<String> dates = new ArrayList<String>();
......
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