| | |
| | | package com.by4cloud.platformx.device.service.impl; |
| | | |
| | | import com.baomidou.mybatisplus.core.metadata.IPage; |
| | | import com.baomidou.mybatisplus.extension.plugins.pagination.Page; |
| | | import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl; |
| | | import com.by4cloud.platformx.device.dto.InventoryFlowWaterQueryDTO; |
| | | import com.by4cloud.platformx.device.entity.InventoryFlowWater; |
| | | import com.by4cloud.platformx.device.mapper.InventoryFlowWaterMapper; |
| | | import com.by4cloud.platformx.device.service.InventoryFlowWaterService; |
| | |
| | | */ |
| | | @Service |
| | | public class InventoryFlowWaterServiceImpl extends ServiceImpl<InventoryFlowWaterMapper, InventoryFlowWater> implements InventoryFlowWaterService { |
| | | @Override |
| | | public IPage pageNew(Page page, InventoryFlowWaterQueryDTO queryDTO) { |
| | | return baseMapper.pageNew(page,queryDTO); |
| | | } |
| | | } |