提交 | 用户 | 时间
|
8c1646
|
1 |
package com.iailab.module.data.plan.data.dao; |
潘 |
2 |
|
|
3 |
import com.iailab.framework.common.pojo.PageResult; |
|
4 |
import com.iailab.framework.mybatis.core.mapper.BaseMapperX; |
|
5 |
import com.iailab.framework.mybatis.core.query.LambdaQueryWrapperX; |
|
6 |
import com.iailab.framework.tenant.core.db.dynamic.TenantDS; |
|
7 |
import com.iailab.module.data.plan.data.entity.PlanDataSetEntity; |
|
8 |
import com.iailab.module.data.plan.data.vo.PlanDataSetPageReqVO; |
|
9 |
import org.apache.ibatis.annotations.Mapper; |
|
10 |
|
|
11 |
/** |
|
12 |
* @author PanZhibao |
|
13 |
* @Description |
|
14 |
* @createTime 2024年09月10日 |
|
15 |
*/ |
|
16 |
@TenantDS |
|
17 |
@Mapper |
|
18 |
public interface PlanDataSetDao extends BaseMapperX<PlanDataSetEntity> { |
|
19 |
|
|
20 |
default PageResult<PlanDataSetEntity> selectPage(PlanDataSetPageReqVO reqVO) { |
|
21 |
return selectPage(reqVO, new LambdaQueryWrapperX<PlanDataSetEntity>() |
|
22 |
.likeIfPresent(PlanDataSetEntity::getName, reqVO.getName()) |
|
23 |
.orderByDesc(PlanDataSetEntity::getCreateTime)); |
|
24 |
} |
|
25 |
} |