refactor(device): 移除设备列表查询中的 TODO 注释

- 删除了 query 方法上的 TODO 注释,准备解决分页条件问题
This commit is contained in:
zhuangtianxiang 2025-03-20 19:34:33 +08:00
parent 790aed76ea
commit 049e91db82

View File

@ -172,7 +172,6 @@ public class DeviceServiceImpl extends ServiceImpl<DeviceRepository, Device> imp
/**
* 查询设备列表
*/
//TODO 解决分页条件问题
@Override
public IPage<Device> query(Page<Device> page, DeviceQuery query) {
return baseMapper.selectPageByConditions(page, query);