| | |
| | | package org.sxkj.gd.orderdata.service.impl; |
| | | |
| | | import org.sxkj.gd.orderdata.entity.GdSupplyDemandEntity; |
| | | import org.sxkj.gd.orderdata.param.GdSupplyDemandPageParam; |
| | | import org.sxkj.gd.orderdata.vo.GdSupplyDemandVO; |
| | | import org.sxkj.gd.orderdata.excel.GdSupplyDemandExcel; |
| | | import org.sxkj.gd.orderdata.mapper.GdSupplyDemandMapper; |
| | |
| | | public class GdSupplyDemandServiceImpl extends BaseServiceImpl<GdSupplyDemandMapper, GdSupplyDemandEntity> implements IGdSupplyDemandService { |
| | | |
| | | @Override |
| | | public IPage<GdSupplyDemandVO> selectGdSupplyDemandPage(IPage<GdSupplyDemandVO> page, GdSupplyDemandVO gdSupplyDemand) { |
| | | public IPage<GdSupplyDemandVO> selectGdSupplyDemandPage(IPage<GdSupplyDemandVO> page, GdSupplyDemandPageParam gdSupplyDemand) { |
| | | return page.setRecords(baseMapper.selectGdSupplyDemandPage(page, gdSupplyDemand)); |
| | | } |
| | | |