| | |
| | | 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.framework.tenant.core.db.dynamic.TenantDS; |
| | | import com.iailab.module.model.mcs.sche.entity.StScheduleRecordEntity; |
| | | import com.iailab.module.model.mcs.sche.vo.StScheduleRecordPageReqVO; |
| | | import org.apache.ibatis.annotations.Mapper; |
| | |
| | | * @Description |
| | | * @createTime 2024年09月06日 |
| | | */ |
| | | @TenantDS |
| | | @Mapper |
| | | public interface StScheduleRecordDao extends BaseMapperX<StScheduleRecordEntity> { |
| | | |
| | | default PageResult<StScheduleRecordEntity> selectPage(StScheduleRecordPageReqVO reqVO) { |
| | | return selectPage(reqVO, new LambdaQueryWrapperX<StScheduleRecordEntity>() |
| | | .eqIfPresent(StScheduleRecordEntity::getSchemeId, reqVO.getSchemeId()) |
| | | .likeIfPresent(StScheduleRecordEntity::getModelName, reqVO.getModelName()) |
| | | .geIfPresent(StScheduleRecordEntity::getScheduleTime, reqVO.getStartTime()) |
| | | .leIfPresent(StScheduleRecordEntity::getScheduleTime, reqVO.getEndTime()) |