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