|
|
|
@ -9,6 +9,7 @@ import com.ruoyi.common.core.domain.R;
|
|
|
|
|
import com.ruoyi.system.domain.SysColumn;
|
|
|
|
|
import com.ruoyi.system.domain.SysColumnVO;
|
|
|
|
|
import com.ruoyi.system.domain.SysSpecial;
|
|
|
|
|
import com.ruoyi.system.domain.SysSpecialDTO;
|
|
|
|
|
import com.ruoyi.system.service.ISysColumnService;
|
|
|
|
|
import com.ruoyi.system.service.ISysSpecialService;
|
|
|
|
|
import io.swagger.annotations.Api;
|
|
|
|
@ -75,17 +76,10 @@ public class LawController extends BaseController {
|
|
|
|
|
|
|
|
|
|
@ApiOperation("专题活动")
|
|
|
|
|
@GetMapping("/special")
|
|
|
|
|
public R<PageInfo<SysSpecial>> special(@RequestParam(required = false, defaultValue = "1", value = "p") Integer pageNum,
|
|
|
|
|
@RequestParam(required = false, defaultValue = PAGE_SIZE, value = "ps") Integer pageSize,
|
|
|
|
|
@RequestParam(required = false) String columnId,
|
|
|
|
|
@RequestParam(required = false) String specialTitle) {
|
|
|
|
|
PageMethod.startPage(pageNum, pageSize);
|
|
|
|
|
SysSpecial sysSpecial = new SysSpecial();
|
|
|
|
|
sysSpecial.setStatus(STATUS);
|
|
|
|
|
sysSpecial.setColumnId(columnId);
|
|
|
|
|
sysSpecial.setSpecialTitle(specialTitle);
|
|
|
|
|
List<SysSpecial> specialList = specialService.selectSysSpecialList(sysSpecial);
|
|
|
|
|
PageInfo<SysSpecial> page = new PageInfo<>(specialList, pageSize);
|
|
|
|
|
public R<PageInfo<SysSpecial>> special(SysSpecialDTO sysSpecialDTO) {
|
|
|
|
|
PageMethod.startPage(sysSpecialDTO.getPageNum(), sysSpecialDTO.getPageSize());
|
|
|
|
|
List<SysSpecial> specialList = specialService.selectSysSpecialDTOList(sysSpecialDTO);
|
|
|
|
|
PageInfo<SysSpecial> page = PageInfo.of(specialList);
|
|
|
|
|
return R.ok(page);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|