package com.ycl.platform.service;
|
|
import com.ycl.platform.domain.entity.TPlatform;
|
import com.ycl.platform.domain.query.DashboardQuery;
|
|
import java.util.List;
|
import java.util.Map;
|
|
/**
|
* 平台运行监控Service接口
|
*
|
* @author gonghl
|
* @date 2024-04-10
|
*/
|
public interface ITPlatformService {
|
/**
|
* 查询平台运行监控
|
*
|
* @param id 平台运行监控主键
|
* @return 平台运行监控
|
*/
|
public TPlatform selectTPlatformById(Long id);
|
|
/**
|
* 查询平台运行监控列表
|
*
|
* @param tPlatform 平台运行监控
|
* @return 平台运行监控集合
|
*/
|
public List<TPlatform> selectTPlatformList(TPlatform tPlatform);
|
|
/**
|
* 新增平台运行监控
|
*
|
* @param tPlatform 平台运行监控
|
* @return 结果
|
*/
|
public int insertTPlatform(TPlatform tPlatform);
|
|
/**
|
* 修改平台运行监控
|
*
|
* @param tPlatform 平台运行监控
|
* @return 结果
|
*/
|
public int updateTPlatform(TPlatform tPlatform);
|
|
/**
|
* 批量删除平台运行监控
|
*
|
* @param ids 需要删除的平台运行监控主键集合
|
* @return 结果
|
*/
|
public int deleteTPlatformByIds(Long[] ids);
|
|
/**
|
* 删除平台运行监控信息
|
*
|
* @param id 平台运行监控主键
|
* @return 结果
|
*/
|
public int deleteTPlatformById(Long id);
|
|
|
}
|