You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
65 lines
1.2 KiB
65 lines
1.2 KiB
1 year ago
|
package com.zc.business.service;
|
||
|
|
||
|
|
||
|
import com.baomidou.mybatisplus.extension.service.IService;
|
||
|
import com.zc.business.domain.DcDevice;
|
||
|
|
||
|
import java.util.List;
|
||
|
|
||
|
/**
|
||
|
* 设备Service接口
|
||
|
*
|
||
|
* @author zhaoxianglong
|
||
|
*/
|
||
|
public interface IDcDeviceService extends IService<DcDevice> {
|
||
|
|
||
|
/**
|
||
|
* 添加设备信息
|
||
|
*
|
||
|
* @param dcDevice 设备信息
|
||
|
* @return 操作结果
|
||
|
*/
|
||
|
boolean addDevice(DcDevice dcDevice);
|
||
|
|
||
|
/**
|
||
|
* 修改设备信息
|
||
|
*
|
||
|
* @param dcDevice 设备信息
|
||
|
* @return 操作结果
|
||
|
*/
|
||
|
boolean editDevice(DcDevice dcDevice);
|
||
|
|
||
|
/**
|
||
|
* 删除设备
|
||
|
*
|
||
|
* @param ids 设备ID
|
||
|
* @return 操作结果
|
||
|
*/
|
||
|
boolean removeDevice(List<String> ids);
|
||
|
|
||
|
/**
|
||
|
* 获取设备列表
|
||
|
*
|
||
|
* @param dcDevice 参数
|
||
|
* @return 结果
|
||
|
*/
|
||
|
List<DcDevice> pageDevice(DcDevice dcDevice);
|
||
|
|
||
|
/**
|
||
|
* 获取设备列表
|
||
|
*
|
||
|
* @param dcDevice 参数
|
||
|
* @return 结果
|
||
|
*/
|
||
|
List<DcDevice> listDevice(DcDevice dcDevice);
|
||
|
|
||
|
|
||
|
/**
|
||
|
* 根据id查询设备信息
|
||
|
*
|
||
|
* @param id 设备ID
|
||
|
* @return 设备信息
|
||
|
*/
|
||
|
DcDevice getDevice(String id);
|
||
|
}
|