| | |
| | | import com.baomidou.mybatisplus.core.metadata.IPage; |
| | | import org.sxkj.fw.detection.dto.FwEffectEvalDTO; |
| | | import org.sxkj.fw.detection.entity.FwEffectEvalEntity; |
| | | import org.sxkj.fw.detection.param.FwEffectEvalParam; |
| | | import org.sxkj.fw.detection.vo.FwEffectEvalVO; |
| | | import org.sxkj.fw.detection.excel.FwEffectEvalExcel; |
| | | import org.sxkj.fw.detection.wrapper.FwEffectEvalWrapper; |
| | |
| | | @GetMapping("/page") |
| | | @ApiOperationSupport(order = 3) |
| | | @ApiOperation(value = "分页", notes = "传入fwEffectEval") |
| | | public R<IPage<FwEffectEvalVO>> page(FwEffectEvalVO fwEffectEval, Query query) { |
| | | public R<IPage<FwEffectEvalVO>> page(FwEffectEvalParam fwEffectEval, Query query) { |
| | | IPage<FwEffectEvalVO> pages = fwEffectEvalService.selectFwEffectEvalPage(Condition.getPage(query), fwEffectEval); |
| | | return R.data(pages); |
| | | } |