提交 | 用户 | 时间
|
97d38f
|
1 |
package com.iailab.module.model.mcs.pre.dao; |
潘 |
2 |
|
5b952f
|
3 |
import com.baomidou.mybatisplus.core.metadata.IPage; |
b06c21
|
4 |
import com.iailab.framework.common.pojo.PageResult; |
97d38f
|
5 |
import com.iailab.framework.mybatis.core.mapper.BaseMapperX; |
潘 |
6 |
import com.iailab.framework.tenant.core.db.dynamic.TenantDS; |
|
7 |
import com.iailab.module.model.mcs.pre.entity.MmPredictAlarmConfigEntity; |
b06c21
|
8 |
import com.iailab.module.model.mcs.pre.vo.MmPredictAlarmConfigPageReqVO; |
5b952f
|
9 |
import com.iailab.module.model.mcs.pre.vo.MmPredictAlarmConfigRespVO; |
97d38f
|
10 |
import org.apache.ibatis.annotations.Mapper; |
5b952f
|
11 |
import org.apache.ibatis.annotations.Param; |
97d38f
|
12 |
|
潘 |
13 |
/** |
|
14 |
* @author PanZhibao |
|
15 |
* @Description |
|
16 |
* @createTime 2024年11月19日 |
|
17 |
*/ |
|
18 |
@TenantDS |
|
19 |
@Mapper |
|
20 |
public interface MmPredictAlarmConfigDao extends BaseMapperX<MmPredictAlarmConfigEntity> { |
b06c21
|
21 |
|
5b952f
|
22 |
IPage<MmPredictAlarmConfigRespVO> getPageList(IPage<MmPredictAlarmConfigEntity> page, @Param("params") MmPredictAlarmConfigPageReqVO reqVO); |
L |
23 |
|
|
24 |
default IPage<MmPredictAlarmConfigRespVO> selectPage(MmPredictAlarmConfigPageReqVO reqVO) { |
|
25 |
return getPageList(getPage(reqVO), reqVO); |
b06c21
|
26 |
} |
97d38f
|
27 |
} |