fuliqi
2024-09-10 7d5ea3631d163343b652bd6bd40b94b34c4194eb
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
package com.ycl.platform.mapper;
 
import com.baomidou.mybatisplus.core.metadata.IPage;
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
 
import com.ycl.platform.domain.entity.Platform;
import com.ycl.platform.domain.query.PlatformQuery;
import com.ycl.platform.domain.vo.PlatformVO;
import org.apache.ibatis.annotations.Mapper;
import org.apache.ibatis.annotations.Param;
 
import java.util.List;
 
/**
 * 平台运行监控 Mapper 接口
 *
 * @author xp
 * @since 2024-08-15
 */
@Mapper
public interface PlatformMapper extends BaseMapper<Platform> {
 
    /**
     * id查找平台运行监控
     * @param id
     * @return
     */
    PlatformVO getById(Integer id);
 
    /**
    *  分页
    */
    List<PlatformVO> getPage(@Param("query") PlatformQuery query);
 
}