| | |
| | | package com.iailab.module.model.mcs.pre.dao; |
| | | |
| | | import com.baomidou.mybatisplus.core.metadata.IPage; |
| | | import com.iailab.framework.common.pojo.PageResult; |
| | | import com.iailab.framework.mybatis.core.mapper.BaseMapperX; |
| | | import com.iailab.framework.mybatis.core.query.LambdaQueryWrapperX; |
| | | import com.iailab.module.model.mcs.pre.entity.MmPredictItemEntity; |
| | | import com.iailab.framework.tenant.core.db.dynamic.TenantDS; |
| | | import com.iailab.module.model.mcs.pre.entity.MmPredictItemEntity; |
| | | import com.iailab.module.model.mcs.pre.vo.MmPredictItemPageReqVO; |
| | | import com.iailab.module.model.mcs.pre.vo.MmPredictItemRespVO; |
| | |
| | | * @author PanZhibao |
| | | * @date 2021年04月26日 11:35 |
| | | */ |
| | | @TenantDS |
| | | @Mapper |
| | | public interface MmPredictItemDao extends BaseMapperX<MmPredictItemEntity> { |
| | | |
| | | /** |
| | | * 查询列表 |
| | | * |
| | | * @param params |
| | | * @return |
| | | */ |
| | | IPage<MmPredictItemRespVO> getPageList(IPage<MmPredictItemEntity> page, @Param("params") Map<String, Object> params); |
| | | IPage<MmPredictItemRespVO> getPageList(IPage<MmPredictItemEntity> page, @Param("params") MmPredictItemPageReqVO params); |
| | | |
| | | List<MmPredictItemRespVO> queryList(Map<String, Object> params); |
| | | |
| | | List<ItemVO> getByModuleId(Map<String, Object> params); |
| | | |
| | | List<ItemVO> getItem(Map<String, Object> params); |
| | | |
| | | List<MergeItemVO> getMergeItemByItemId(Map<String, Object> params); |
| | | |
| | | default IPage<MmPredictItemRespVO> selectPage(MmPredictItemPageReqVO reqVO) { |
| | | return getPageList(getPage(reqVO), reqVO); |
| | | } |
| | | } |