zxl
4 小时以前 3b0516a2959e25576e4f3fda697a3b025d06c8c9
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
62
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<TPlatform> {
    /**
     * 查询平台运行监控
     *
     * @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 id 平台运行监控主键
     * @return 结果
     */
    public int deleteTPlatformById(Long id);
 
    /**
     * 批量删除平台运行监控
     *
     * @param ids 需要删除的数据主键集合
     * @return 结果
     */
    public int deleteTPlatformByIds(Long[] ids);
}