修改接口system/devicemodel/list分页
This commit is contained in:
@@ -1,5 +1,6 @@
|
||||
package com.maibu.service;
|
||||
|
||||
import com.baomidou.mybatisplus.extension.plugins.pagination.Page;
|
||||
import com.maibu.core.business.DeviceModel;
|
||||
|
||||
import java.util.List;
|
||||
@@ -18,11 +19,12 @@ public interface SysDeviceModelService {
|
||||
int insertDeviceModel(DeviceModel deviceModel);
|
||||
|
||||
/**
|
||||
*查询设备模型列表
|
||||
* @param deviceModel
|
||||
* @return
|
||||
* 分页查询设备模型列表
|
||||
* @param page 分页对象
|
||||
* @param deviceModel 查询条件
|
||||
* @return 分页结果
|
||||
*/
|
||||
List<DeviceModel> selectDeviceModelList(DeviceModel deviceModel);
|
||||
Page<DeviceModel> selectDeviceModelPage(Page<DeviceModel> page, DeviceModel deviceModel);
|
||||
|
||||
/**
|
||||
* selectDeviceModelById
|
||||
|
||||
File diff suppressed because one or more lines are too long
Reference in New Issue
Block a user