package com.ycl.platform.mapper; import com.baomidou.mybatisplus.core.mapper.BaseMapper; import com.ycl.platform.domain.entity.TPlatform; import java.util.List; /** * 平台运行监控Mapper接口 * * @author gonghl * @date 2024-04-10 */ public interface TPlatformMapper extends BaseMapper { /** * 查询平台运行监控 * * @param id 平台运行监控主键 * @return 平台运行监控 */ public TPlatform selectTPlatformById(Long id); /** * 查询平台运行监控列表 * * @param tPlatform 平台运行监控 * @return 平台运行监控集合 */ public List selectTPlatformList(TPlatform tPlatform); /** * 新增平台运行监控 * * @param tPlatform 平台运行监控 * @return 结果 */ public int insertTPlatform(TPlatform tPlatform); /** * 修改平台运行监控 * * @param tPlatform 平台运行监控 * @return 结果 */ public int updateTPlatform(TPlatform tPlatform); /** * 删除平台运行监控 * * @param id 平台运行监控主键 * @return 结果 */ public int deleteTPlatformById(Long id); /** * 批量删除平台运行监控 * * @param ids 需要删除的数据主键集合 * @return 结果 */ public int deleteTPlatformByIds(Long[] ids); }