package com.ruoyi.jt.mapper; import com.ruoyi.jt.domain.JtDeviceLocation; import java.util.List; /** * 设备位置Mapper接口 * * @author ruoyi * @date 2025-06-26 */ public interface JtDeviceLocationMapper { /** * 查询设备位置 * * @param id 设备位置主键 * @return 设备位置 */ public JtDeviceLocation selectJtDeviceLocationById(String id); /** * 查询设备位置列表 * * @param jtDeviceLocation 设备位置 * @return 设备位置集合 */ public List selectJtDeviceLocationList(JtDeviceLocation jtDeviceLocation); /** * 新增设备位置 * * @param jtDeviceLocation 设备位置 * @return 结果 */ public int insertJtDeviceLocation(JtDeviceLocation jtDeviceLocation); /** * 修改设备位置 * * @param jtDeviceLocation 设备位置 * @return 结果 */ public int updateJtDeviceLocation(JtDeviceLocation jtDeviceLocation); /** * 删除设备位置 * * @param id 设备位置主键 * @return 结果 */ public int deleteJtDeviceLocationById(String id); /** * 批量删除设备位置 * * @param ids 需要删除的数据主键集合 * @return 结果 */ public int deleteJtDeviceLocationByIds(String[] ids); }