dengzedong
2025-06-05 ef55a7f64b2160ee26ea9a4a65136c54aefae31f
iailab-module-model/iailab-module-model-biz/src/main/java/com/iailab/module/model/mcs/sche/dao/StSuggestSnapshotConfDetDao.java
@@ -16,6 +16,6 @@
public interface StSuggestSnapshotConfDetDao extends BaseMapperX<StSuggestSnapshotConfDetEntity> {
    default PageResult<StSuggestSnapshotConfDetEntity> selectPage(StSuggestSnapshotConfDetPageReqVO reqVO) {
        return selectPage(reqVO,new LambdaQueryWrapperX<StSuggestSnapshotConfDetEntity>()
                .likeIfPresent(StSuggestSnapshotConfDetEntity::getConfId,reqVO.getConfId()));
                .likeIfPresent(StSuggestSnapshotConfDetEntity::getConfId,reqVO.getConfId()).orderByAsc(StSuggestSnapshotConfDetEntity::getSort));
    }
}