| | |
| | | |
| | | import org.sxkj.gd.utils.GeomUtils; |
| | | import org.sxkj.gd.workorder.entity.GdManageDeviceEntity; |
| | | import org.sxkj.gd.workorder.param.GdManageDevicePageParam; |
| | | import org.sxkj.gd.workorder.vo.GdManageDeviceVO; |
| | | import org.sxkj.gd.workorder.excel.GdManageDeviceExcel; |
| | | import org.sxkj.gd.workorder.mapper.GdManageDeviceMapper; |
| | |
| | | public class GdManageDeviceServiceImpl extends BaseServiceImpl<GdManageDeviceMapper, GdManageDeviceEntity> implements IGdManageDeviceService { |
| | | |
| | | @Override |
| | | public IPage<GdManageDeviceVO> selectGdManageDevicePage(IPage<GdManageDeviceVO> page, GdManageDeviceVO gdManageDevice) { |
| | | public IPage<GdManageDeviceVO> selectGdManageDevicePage(IPage<GdManageDeviceVO> page, GdManageDevicePageParam gdManageDevice) { |
| | | return page.setRecords(baseMapper.selectGdManageDevicePage(page, gdManageDevice)); |
| | | } |
| | | |
| | | @Override |
| | | public List<GdManageDeviceVO> selectGdManageDevice(GdManageDeviceVO gdManageDevice) { |
| | | public List<GdManageDeviceVO> selectGdManageDevice(GdManageDevicePageParam gdManageDevice) { |
| | | return baseMapper.selectGdManageDevice(gdManageDevice); |
| | | } |
| | | |