记得上下班打卡 | git大法好,push需谨慎

Commit 898ca840 authored by 胡佳晨's avatar 胡佳晨

完成 优先券 对于巡演的拦截

parent f0980065
......@@ -54,6 +54,16 @@ public class KylinRoadShowController extends BaseController {
return getDataTable(result.getList());
}
@Log(title = "巡演管理", businessType = BusinessType.LIST)
@GetMapping("/getList")
@ResponseBody
public TableDataInfo getlistRoadShow(@RequestParam(value = "title", required = false) String title,
@RequestParam(value = "pageNum") int page,
@RequestParam(value = "pageSize") int size) {
startPage();
PageInfo<RoadShowAdminListDao> result = kylinRoadShowsAdminService.listRoadShow(title, page, size);
return getDataTable(result.getList());
}
/**
* 新增巡演
*/
......
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