济菏高速数据中心代码
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.
 
 
 
 
 

63 lines
1.1 KiB

package com.zc.business.service;
import com.baomidou.mybatisplus.extension.service.IService;
import com.zc.business.domain.DcRoad;
import java.util.List;
/**
* 道路信息Service接口
*
* @author zhaoxianglong
*/
public interface IDcRoadService extends IService<DcRoad> {
/**
* 添加设备信息
*
* @param dcRoad 设备信息
* @return 操作结果
*/
boolean addRoad(DcRoad dcRoad);
/**
* 修改设备信息
*
* @param dcRoad 设备信息
* @return 操作结果
*/
boolean editRoad(DcRoad dcRoad);
/**
* 删除设备
*
* @param ids 设备ID
* @return 操作结果
*/
boolean removeRoad(List<String> ids);
/**
* 获取设备列表
*
* @param dcRoad 参数
* @return 结果
*/
List<DcRoad> pageRoad(DcRoad dcRoad);
/**
* 获取设备列表
*
* @param dcRoad 参数
* @return 结果
*/
List<DcRoad> listRoad(DcRoad dcRoad);
/**
* 根据id查询设备信息
*
* @param id 设备ID
* @return 设备信息
*/
DcRoad getRoad(String id);
}