yantian yue
2023-10-18 465d5c4666546e7e54f0e3c34c7bcce5830aaa6a
提交 | 用户 | 时间
487b2f 1 package cn.stylefeng.guns.opcua.mapper;
YY 2
3 import cn.stylefeng.guns.opcua.entity.OpcuaConf;
4 import cn.stylefeng.guns.opcua.model.params.OpcuaConfParam;
5 import cn.stylefeng.guns.opcua.model.result.OpcuaConfResult;
6 import com.baomidou.mybatisplus.core.mapper.BaseMapper;
7 import com.baomidou.mybatisplus.core.metadata.IPage;
8 import com.baomidou.mybatisplus.extension.plugins.pagination.Page;
9 import org.apache.ibatis.annotations.Param;
10
11 import java.util.List;
12 import java.util.Map;
13
14 /**
15  * <p>
16  *  Mapper 接口
17  * </p>
18  *
19  * @author yyt
20  * @since 2023-10-17
21  */
22 public interface OpcuaConfMapper extends BaseMapper<OpcuaConf> {
23
24     /**
25      * 获取列表
26      *
27      * @author yyt
28      * @Date 2023-10-17
29      */
30     List<OpcuaConfResult> customList(@Param("paramCondition") OpcuaConfParam paramCondition);
31
32     /**
33      * 获取map列表
34      *
35      * @author yyt
36      * @Date 2023-10-17
37      */
38     List<Map<String, Object>> customMapList(@Param("paramCondition") OpcuaConfParam paramCondition);
39
40     /**
41      * 获取分页实体列表
42      *
43      * @author yyt
44      * @Date 2023-10-17
45      */
46     Page<OpcuaConfResult> customPageList(@Param("page") Page page, @Param("paramCondition") OpcuaConfParam paramCondition);
47
48     /**
49      * 获取分页map列表
50      *
51      * @author yyt
52      * @Date 2023-10-17
53      */
54     Page<Map<String, Object>> customPageMapList(@Param("page") Page page, @Param("paramCondition") OpcuaConfParam paramCondition);
55
56 }