| | |
| | | import com.iailab.framework.mybatis.core.mapper.BaseMapperX; |
| | | import com.iailab.framework.mybatis.core.query.LambdaQueryWrapperX; |
| | | import com.iailab.framework.tenant.core.db.dynamic.TenantDS; |
| | | import com.iailab.module.model.mcs.sche.entity.StScheduleModelEntity; |
| | | import com.iailab.module.model.mcs.sche.entity.StSuggestSnapshotConfDetEntity; |
| | | import com.iailab.module.model.mcs.sche.vo.StSuggestSnapshotConfDetPageReqVO; |
| | | import org.apache.ibatis.annotations.Mapper; |
| | | import org.apache.ibatis.annotations.Param; |
| | | |
| | | /** |
| | | * @author Jay |
| | |
| | | @Mapper |
| | | public interface StSuggestSnapshotConfDetDao extends BaseMapperX<StSuggestSnapshotConfDetEntity> { |
| | | default PageResult<StSuggestSnapshotConfDetEntity> selectPage(StSuggestSnapshotConfDetPageReqVO reqVO) { |
| | | return selectPage(reqVO); |
| | | return selectPage(reqVO,new LambdaQueryWrapperX<StSuggestSnapshotConfDetEntity>() |
| | | .likeIfPresent(StSuggestSnapshotConfDetEntity::getConfId,reqVO.getConfId()).orderByAsc(StSuggestSnapshotConfDetEntity::getSort)); |
| | | } |
| | | } |