提交 | 用户 | 时间
|
87d7ae
|
1 |
package com.iailab.module.model.mcs.sche.dao; |
潘 |
2 |
|
047676
|
3 |
import com.baomidou.mybatisplus.core.metadata.IPage; |
87d7ae
|
4 |
import com.iailab.framework.mybatis.core.mapper.BaseMapperX; |
潘 |
5 |
import com.iailab.framework.tenant.core.db.dynamic.TenantDS; |
|
6 |
import com.iailab.module.model.mcs.sche.entity.StAdjustConfigEntity; |
047676
|
7 |
import com.iailab.module.model.mcs.sche.vo.StAdjustConfigPageReqVO; |
L |
8 |
import com.iailab.module.model.mcs.sche.vo.StAdjustConfigRespVO; |
87d7ae
|
9 |
import org.apache.ibatis.annotations.Mapper; |
047676
|
10 |
import org.apache.ibatis.annotations.Param; |
87d7ae
|
11 |
|
潘 |
12 |
/** |
|
13 |
* @author PanZhibao |
|
14 |
* @Description |
|
15 |
* @createTime 2025年02月23日 |
|
16 |
*/ |
|
17 |
@TenantDS |
|
18 |
@Mapper |
|
19 |
public interface StAdjustConfigDao extends BaseMapperX<StAdjustConfigEntity> { |
047676
|
20 |
|
L |
21 |
IPage<StAdjustConfigRespVO> getPage(IPage<StAdjustConfigEntity> page, @Param("params") StAdjustConfigPageReqVO reqVO); |
|
22 |
|
|
23 |
default IPage<StAdjustConfigRespVO> selectPage(StAdjustConfigPageReqVO reqVO) { |
|
24 |
return getPage(getPage(reqVO), reqVO); |
|
25 |
} |
87d7ae
|
26 |
} |