ITMapDeviceInfoService.java 1.61 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68
package com.zehong.system.service;

import java.util.List;
import com.zehong.system.domain.TMapDeviceInfo;

/**
 * 上图设备信息Service接口
 * 
 * @author zehong
 * @date 2022-10-08
 */
public interface ITMapDeviceInfoService 
{
    /**
     * 查询上图设备信息
     * 
     * @param mapDeviceId 上图设备信息ID
     * @return 上图设备信息
     */
    public TMapDeviceInfo selectTMapDeviceInfoById(Long mapDeviceId);

    /**
     * 查询上图设备信息列表
     * 
     * @param tMapDeviceInfo 上图设备信息
     * @return 上图设备信息集合
     */
    public List<TMapDeviceInfo> selectTMapDeviceInfoList(TMapDeviceInfo tMapDeviceInfo);

    /**
     * 新增上图设备信息
     * 
     * @param tMapDeviceInfo 上图设备信息
     * @return 结果
     */
    public int insertTMapDeviceInfo(TMapDeviceInfo tMapDeviceInfo);

    /**
     * 修改上图设备信息
     * 
     * @param tMapDeviceInfo 上图设备信息
     * @return 结果
     */
    public int updateTMapDeviceInfo(TMapDeviceInfo tMapDeviceInfo);

    /**
     * 批量删除上图设备信息
     * 
     * @param mapDeviceIds 需要删除的上图设备信息ID
     * @return 结果
     */
    public int deleteTMapDeviceInfoByIds(Long[] mapDeviceIds);

    /**
     * 删除上图设备信息信息
     * 
     * @param mapDeviceId 上图设备信息ID
     * @return 结果
     */
    public int deleteTMapDeviceInfoById(Long mapDeviceId);

    /**
     * 获取所有上图设备信息
     * @param tMapDeviceInfo
     * @return
     */
    List<TMapDeviceInfo> deviceInfoLists(TMapDeviceInfo tMapDeviceInfo);
}