龚焕茏
2024-04-15 b86b34a3ba3a844207d3db527db8f9e9fa22033b
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.ycl.platform.service;
 
import com.ycl.platform.domain.entity.TPlatform;
 
import java.util.List;
 
/**
 * 平台运行监控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);
}