|
|
@ -67,6 +67,9 @@ public class HomeController {
|
|
|
|
//专题活动类型
|
|
|
|
//专题活动类型
|
|
|
|
public static final String WINDOW_COLUMN_TYPE = "3";
|
|
|
|
public static final String WINDOW_COLUMN_TYPE = "3";
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
//宣传活动类型
|
|
|
|
|
|
|
|
public static final String XCHD_COLUMN_TYPE = "4";
|
|
|
|
|
|
|
|
|
|
|
|
public static final String STATUS = "0";
|
|
|
|
public static final String STATUS = "0";
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
@ -89,6 +92,15 @@ public class HomeController {
|
|
|
|
List<SysContent> contentList = contentService.selectSysContentHomeList(new SysContent());
|
|
|
|
List<SysContent> contentList = contentService.selectSysContentHomeList(new SysContent());
|
|
|
|
mmap.put("contentList", contentList);
|
|
|
|
mmap.put("contentList", contentList);
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
//宣传活动对应的栏目
|
|
|
|
|
|
|
|
LambdaQueryWrapper<SysColumn> qxWrapper= new LambdaQueryWrapper<>();
|
|
|
|
|
|
|
|
qxWrapper.eq(SysColumn::getColumnType, XCHD_COLUMN_TYPE);
|
|
|
|
|
|
|
|
qxWrapper.eq(SysColumn::getColumnGrade, COLUMN_GRADE);
|
|
|
|
|
|
|
|
qxWrapper.eq(SysColumn::getStatus,STATUS);
|
|
|
|
|
|
|
|
qxWrapper.last("limit 6");
|
|
|
|
|
|
|
|
qxWrapper.orderByAsc(SysColumn::getOrderNum);
|
|
|
|
|
|
|
|
List<SysColumn> xchdColumns = columnService.list(qxWrapper);
|
|
|
|
|
|
|
|
mmap.put("xchdColumns", xchdColumns);
|
|
|
|
//部门动态对应的栏目
|
|
|
|
//部门动态对应的栏目
|
|
|
|
LambdaQueryWrapper<SysColumn> query= new LambdaQueryWrapper<>();
|
|
|
|
LambdaQueryWrapper<SysColumn> query= new LambdaQueryWrapper<>();
|
|
|
|
query.eq(SysColumn::getColumnType, DEPT_COLUMN_TYPE);
|
|
|
|
query.eq(SysColumn::getColumnType, DEPT_COLUMN_TYPE);
|
|
|
@ -145,6 +157,15 @@ public class HomeController {
|
|
|
|
List<SysContent> contentList = contentService.selectSysContentHomeList(new SysContent());
|
|
|
|
List<SysContent> contentList = contentService.selectSysContentHomeList(new SysContent());
|
|
|
|
mmap.put("contentList", contentList);
|
|
|
|
mmap.put("contentList", contentList);
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
//宣传活动对应的栏目
|
|
|
|
|
|
|
|
LambdaQueryWrapper<SysColumn> qxWrapper= new LambdaQueryWrapper<>();
|
|
|
|
|
|
|
|
qxWrapper.eq(SysColumn::getColumnType, XCHD_COLUMN_TYPE);
|
|
|
|
|
|
|
|
qxWrapper.eq(SysColumn::getColumnGrade, COLUMN_GRADE);
|
|
|
|
|
|
|
|
qxWrapper.eq(SysColumn::getStatus,STATUS);
|
|
|
|
|
|
|
|
qxWrapper.last("limit 6");
|
|
|
|
|
|
|
|
qxWrapper.orderByAsc(SysColumn::getOrderNum);
|
|
|
|
|
|
|
|
List<SysColumn> xchdColumns = columnService.list(qxWrapper);
|
|
|
|
|
|
|
|
mmap.put("xchdColumns", xchdColumns);
|
|
|
|
//部门动态对应的栏目
|
|
|
|
//部门动态对应的栏目
|
|
|
|
LambdaQueryWrapper<SysColumn> query= new LambdaQueryWrapper<>();
|
|
|
|
LambdaQueryWrapper<SysColumn> query= new LambdaQueryWrapper<>();
|
|
|
|
query.eq(SysColumn::getColumnType, DEPT_COLUMN_TYPE);
|
|
|
|
query.eq(SysColumn::getColumnType, DEPT_COLUMN_TYPE);
|
|
|
|