|
|
|
@ -73,7 +73,7 @@ public class ColumnTreeController extends BaseController {
|
|
|
|
|
LambdaQueryWrapper<SysColumn> tagWrapper = new LambdaQueryWrapper<>();
|
|
|
|
|
tagWrapper.eq(SysColumn::getColumnId, columnId)
|
|
|
|
|
.eq(SysColumn::getColumnGrade, COLUMN_GRADE)
|
|
|
|
|
.eq(SysColumn::getStatus,STATUS)
|
|
|
|
|
.eq(SysColumn::getStatus, STATUS)
|
|
|
|
|
.orderByAsc(SysColumn::getOrderNum);
|
|
|
|
|
List<SysColumn> datas = columnService.list(tagWrapper);
|
|
|
|
|
List<SysColumnVO> tagTreeVOList = new ArrayList<>(Convert.toList(SysColumnVO.class, datas));
|
|
|
|
@ -113,21 +113,21 @@ public class ColumnTreeController extends BaseController {
|
|
|
|
|
|
|
|
|
|
@ApiOperation("获取专题栏目")
|
|
|
|
|
@GetMapping("/getSpecial")
|
|
|
|
|
public R<PageInfo<SysSpecialVo>> getSpecial(@RequestParam(required = false) String id,
|
|
|
|
|
@RequestParam(required = false) String columnId) {
|
|
|
|
|
public R<List<SysSpecialVo>> getSpecial(@RequestParam(required = false) String columnId,
|
|
|
|
|
@RequestParam(required = false, defaultValue = "1") String type) {
|
|
|
|
|
List<SysSpecialVo> sysSpecialVos = new ArrayList<>();
|
|
|
|
|
LambdaQueryWrapper<SysColumn> columnQueryWrapper = new LambdaQueryWrapper<>();
|
|
|
|
|
columnQueryWrapper.eq(SysColumn::getStatus, STATUS);
|
|
|
|
|
if(StringUtils.isNotEmpty(columnId)){
|
|
|
|
|
if(Objects.equals(type, COLUMN_GRADE)){
|
|
|
|
|
columnQueryWrapper.eq(SysColumn::getColumnId, columnId);
|
|
|
|
|
}else{
|
|
|
|
|
columnQueryWrapper.eq(SysColumn::getParentId, id);
|
|
|
|
|
columnQueryWrapper.eq(SysColumn::getParentId, columnId);
|
|
|
|
|
}
|
|
|
|
|
columnQueryWrapper.orderByAsc(SysColumn::getOrderNum);
|
|
|
|
|
List<SysColumn> columns = columnService.list(columnQueryWrapper);
|
|
|
|
|
if (columns.isEmpty() && Objects.isNull(columnId)) {
|
|
|
|
|
if (columns.isEmpty() && !Objects.equals(type, COLUMN_GRADE)) {
|
|
|
|
|
columnQueryWrapper.clear();
|
|
|
|
|
columnQueryWrapper.eq(SysColumn::getColumnId, id)
|
|
|
|
|
columnQueryWrapper.eq(SysColumn::getColumnId, columnId)
|
|
|
|
|
.eq(SysColumn::getStatus, STATUS)
|
|
|
|
|
.orderByAsc(SysColumn::getOrderNum);
|
|
|
|
|
columns = columnService.list(columnQueryWrapper);
|
|
|
|
@ -141,10 +141,9 @@ public class ColumnTreeController extends BaseController {
|
|
|
|
|
.eq(SysSpecial::getStatus, STATUS)
|
|
|
|
|
.orderByDesc(SysSpecial::getCreateTime)
|
|
|
|
|
.list();
|
|
|
|
|
sysSpecialVo.setSysSpecials(specialList);
|
|
|
|
|
sysSpecialVo.setSysSpecials(PageInfo.of(specialList));
|
|
|
|
|
sysSpecialVos.add(sysSpecialVo);
|
|
|
|
|
});
|
|
|
|
|
PageInfo<SysSpecialVo> page = PageInfo.of(sysSpecialVos);
|
|
|
|
|
return R.ok(page);
|
|
|
|
|
return R.ok(sysSpecialVos);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|