|
@@ -87,6 +87,17 @@ public class FrontNewsController extends BaseController {
|
|
|
return getDataTable(newsRefService.selectBWwwNewsRefList(cond));
|
|
return getDataTable(newsRefService.selectBWwwNewsRefList(cond));
|
|
|
}
|
|
}
|
|
|
|
|
|
|
|
|
|
+ @GetMapping("getMainListV2")
|
|
|
|
|
+ @ApiOperation("00 通关指南免登陆")
|
|
|
|
|
+ @Anonymous
|
|
|
|
|
+ public TableDataInfo getMainListV2() {
|
|
|
|
|
+ BWwwNewsRef cond = new BWwwNewsRef();
|
|
|
|
|
+ cond.setLocation(commService.getLocation(null));
|
|
|
|
|
+ cond.setSubType("官方公告");
|
|
|
|
|
+ List<BWwwNewsRef> list = newsRefService.selectBWwwNewsRefList(cond);
|
|
|
|
|
+ return getDataTable(list);
|
|
|
|
|
+ }
|
|
|
|
|
+
|
|
|
@GetMapping("getMainCourseDateNoToken")
|
|
@GetMapping("getMainCourseDateNoToken")
|
|
|
@ApiOperation("00 考试日程免登陆")
|
|
@ApiOperation("00 考试日程免登陆")
|
|
|
public TableDataInfo getMainCourseDateNoToken() {
|
|
public TableDataInfo getMainCourseDateNoToken() {
|