TYehuaqiDeviceMapper.java 1.54 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
package com.zehong.system.mapper;

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

/**
 * 【请填写功能名称】Mapper接口
 * 
 * @author zehong
 * @date 2022-09-14
 */
public interface TYehuaqiDeviceMapper 
{
    /**
     * 查询【请填写功能名称】
     * 
     * @param detectorId 【请填写功能名称】ID
     * @return 【请填写功能名称】
     */
    public TYehuaqiDevice selectTYehuaqiDeviceById(Long detectorId);

    /**
     * 查询【请填写功能名称】列表
     * 
     * @param tYehuaqiDevice 【请填写功能名称】
     * @return 【请填写功能名称】集合
     */
    public List<TYehuaqiDevice> selectTYehuaqiDeviceList(TYehuaqiDevice tYehuaqiDevice);

    /**
     * 新增【请填写功能名称】
     * 
     * @param tYehuaqiDevice 【请填写功能名称】
     * @return 结果
     */
    public int insertTYehuaqiDevice(TYehuaqiDevice tYehuaqiDevice);

    /**
     * 修改【请填写功能名称】
     * 
     * @param tYehuaqiDevice 【请填写功能名称】
     * @return 结果
     */
    public int updateTYehuaqiDevice(TYehuaqiDevice tYehuaqiDevice);

    /**
     * 删除【请填写功能名称】
     * 
     * @param detectorId 【请填写功能名称】ID
     * @return 结果
     */
    public int deleteTYehuaqiDeviceById(Long detectorId);

    /**
     * 批量删除【请填写功能名称】
     * 
     * @param detectorIds 需要删除的数据ID
     * @return 结果
     */
    public int deleteTYehuaqiDeviceByIds(Long[] detectorIds);
}