Merge remote-tracking branch 'origin/master'
commit
63012d1537
|
@ -24,7 +24,8 @@ public interface PostMapper extends BaseMapperX<PostDO> {
|
||||||
return selectPage(reqVO, new QueryWrapperX<PostDO>()
|
return selectPage(reqVO, new QueryWrapperX<PostDO>()
|
||||||
.likeIfPresent("code", reqVO.getCode())
|
.likeIfPresent("code", reqVO.getCode())
|
||||||
.likeIfPresent("name", reqVO.getName())
|
.likeIfPresent("name", reqVO.getName())
|
||||||
.eqIfPresent("status", reqVO.getStatus()));
|
.eqIfPresent("status", reqVO.getStatus())
|
||||||
|
.orderByDesc("id"));
|
||||||
}
|
}
|
||||||
|
|
||||||
default List<PostDO> selectList(PostExportReqVO reqVO) {
|
default List<PostDO> selectList(PostExportReqVO reqVO) {
|
||||||
|
|
|
@ -37,7 +37,7 @@ public interface DictDataMapper extends BaseMapperX<DictDataDO> {
|
||||||
.likeIfPresent(DictDataDO::getLabel, reqVO.getLabel())
|
.likeIfPresent(DictDataDO::getLabel, reqVO.getLabel())
|
||||||
.likeIfPresent(DictDataDO::getDictType, reqVO.getDictType())
|
.likeIfPresent(DictDataDO::getDictType, reqVO.getDictType())
|
||||||
.eqIfPresent(DictDataDO::getStatus, reqVO.getStatus())
|
.eqIfPresent(DictDataDO::getStatus, reqVO.getStatus())
|
||||||
.orderByAsc(Arrays.asList(DictDataDO::getDictType, DictDataDO::getSort)));
|
.orderByDesc(Arrays.asList(DictDataDO::getDictType, DictDataDO::getSort)));
|
||||||
}
|
}
|
||||||
|
|
||||||
default List<DictDataDO> selectList(DictDataExportReqVO reqVO) {
|
default List<DictDataDO> selectList(DictDataExportReqVO reqVO) {
|
||||||
|
|
|
@ -5,6 +5,7 @@ import cn.iocoder.yudao.framework.mybatis.core.mapper.BaseMapperX;
|
||||||
import cn.iocoder.yudao.framework.mybatis.core.query.LambdaQueryWrapperX;
|
import cn.iocoder.yudao.framework.mybatis.core.query.LambdaQueryWrapperX;
|
||||||
import cn.iocoder.yudao.module.system.controller.admin.dict.vo.type.DictTypeExportReqVO;
|
import cn.iocoder.yudao.module.system.controller.admin.dict.vo.type.DictTypeExportReqVO;
|
||||||
import cn.iocoder.yudao.module.system.controller.admin.dict.vo.type.DictTypePageReqVO;
|
import cn.iocoder.yudao.module.system.controller.admin.dict.vo.type.DictTypePageReqVO;
|
||||||
|
import cn.iocoder.yudao.module.system.dal.dataobject.dict.DictDataDO;
|
||||||
import cn.iocoder.yudao.module.system.dal.dataobject.dict.DictTypeDO;
|
import cn.iocoder.yudao.module.system.dal.dataobject.dict.DictTypeDO;
|
||||||
import org.apache.ibatis.annotations.Mapper;
|
import org.apache.ibatis.annotations.Mapper;
|
||||||
|
|
||||||
|
@ -18,7 +19,8 @@ public interface DictTypeMapper extends BaseMapperX<DictTypeDO> {
|
||||||
.likeIfPresent(DictTypeDO::getName, reqVO.getName())
|
.likeIfPresent(DictTypeDO::getName, reqVO.getName())
|
||||||
.likeIfPresent(DictTypeDO::getType, reqVO.getType())
|
.likeIfPresent(DictTypeDO::getType, reqVO.getType())
|
||||||
.eqIfPresent(DictTypeDO::getStatus, reqVO.getStatus())
|
.eqIfPresent(DictTypeDO::getStatus, reqVO.getStatus())
|
||||||
.betweenIfPresent(DictTypeDO::getCreateTime, reqVO.getBeginCreateTime(), reqVO.getEndCreateTime()));
|
.betweenIfPresent(DictTypeDO::getCreateTime, reqVO.getBeginCreateTime(), reqVO.getEndCreateTime())
|
||||||
|
.orderByDesc(DictTypeDO::getId));
|
||||||
}
|
}
|
||||||
|
|
||||||
default List<DictTypeDO> selectList(DictTypeExportReqVO reqVO) {
|
default List<DictTypeDO> selectList(DictTypeExportReqVO reqVO) {
|
||||||
|
|
|
@ -23,7 +23,7 @@ public interface ErrorCodeMapper extends BaseMapperX<ErrorCodeDO> {
|
||||||
.eqIfPresent("code", reqVO.getCode())
|
.eqIfPresent("code", reqVO.getCode())
|
||||||
.likeIfPresent("message", reqVO.getMessage())
|
.likeIfPresent("message", reqVO.getMessage())
|
||||||
.betweenIfPresent("create_time", reqVO.getBeginCreateTime(), reqVO.getEndCreateTime())
|
.betweenIfPresent("create_time", reqVO.getBeginCreateTime(), reqVO.getEndCreateTime())
|
||||||
.orderByAsc("application_name", "code"));
|
.orderByDesc("code"));
|
||||||
}
|
}
|
||||||
|
|
||||||
default List<ErrorCodeDO> selectList(ErrorCodeExportReqVO reqVO) {
|
default List<ErrorCodeDO> selectList(ErrorCodeExportReqVO reqVO) {
|
||||||
|
|
|
@ -13,7 +13,8 @@ public interface NoticeMapper extends BaseMapperX<NoticeDO> {
|
||||||
default PageResult<NoticeDO> selectPage(NoticePageReqVO reqVO) {
|
default PageResult<NoticeDO> selectPage(NoticePageReqVO reqVO) {
|
||||||
return selectPage(reqVO, new LambdaQueryWrapperX<NoticeDO>()
|
return selectPage(reqVO, new LambdaQueryWrapperX<NoticeDO>()
|
||||||
.likeIfPresent(NoticeDO::getTitle, reqVO.getTitle())
|
.likeIfPresent(NoticeDO::getTitle, reqVO.getTitle())
|
||||||
.eqIfPresent(NoticeDO::getStatus, reqVO.getStatus()));
|
.eqIfPresent(NoticeDO::getStatus, reqVO.getStatus())
|
||||||
|
.orderByDesc(NoticeDO::getId));
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
|
@ -23,7 +23,8 @@ public interface RoleMapper extends BaseMapperX<RoleDO> {
|
||||||
.likeIfPresent(RoleDO::getName, reqVO.getName())
|
.likeIfPresent(RoleDO::getName, reqVO.getName())
|
||||||
.likeIfPresent(RoleDO::getCode, reqVO.getCode())
|
.likeIfPresent(RoleDO::getCode, reqVO.getCode())
|
||||||
.eqIfPresent(RoleDO::getStatus, reqVO.getStatus())
|
.eqIfPresent(RoleDO::getStatus, reqVO.getStatus())
|
||||||
.betweenIfPresent(BaseDO::getCreateTime, reqVO.getBeginTime(), reqVO.getEndTime()));
|
.betweenIfPresent(BaseDO::getCreateTime, reqVO.getBeginTime(), reqVO.getEndTime())
|
||||||
|
.orderByDesc(RoleDO::getId));
|
||||||
}
|
}
|
||||||
|
|
||||||
default List<RoleDO> selectList(RoleExportReqVO reqVO) {
|
default List<RoleDO> selectList(RoleExportReqVO reqVO) {
|
||||||
|
|
|
@ -2,6 +2,7 @@ package cn.iocoder.yudao.module.system.dal.mysql.user;
|
||||||
|
|
||||||
import cn.iocoder.yudao.module.system.controller.admin.user.vo.user.UserExportReqVO;
|
import cn.iocoder.yudao.module.system.controller.admin.user.vo.user.UserExportReqVO;
|
||||||
import cn.iocoder.yudao.module.system.controller.admin.user.vo.user.UserPageReqVO;
|
import cn.iocoder.yudao.module.system.controller.admin.user.vo.user.UserPageReqVO;
|
||||||
|
import cn.iocoder.yudao.module.system.dal.dataobject.tenant.TenantDO;
|
||||||
import cn.iocoder.yudao.module.system.dal.dataobject.user.AdminUserDO;
|
import cn.iocoder.yudao.module.system.dal.dataobject.user.AdminUserDO;
|
||||||
import cn.iocoder.yudao.framework.common.pojo.PageResult;
|
import cn.iocoder.yudao.framework.common.pojo.PageResult;
|
||||||
import cn.iocoder.yudao.framework.mybatis.core.mapper.BaseMapperX;
|
import cn.iocoder.yudao.framework.mybatis.core.mapper.BaseMapperX;
|
||||||
|
@ -33,7 +34,9 @@ public interface AdminUserMapper extends BaseMapperX<AdminUserDO> {
|
||||||
.likeIfPresent(AdminUserDO::getMobile, reqVO.getMobile())
|
.likeIfPresent(AdminUserDO::getMobile, reqVO.getMobile())
|
||||||
.eqIfPresent(AdminUserDO::getStatus, reqVO.getStatus())
|
.eqIfPresent(AdminUserDO::getStatus, reqVO.getStatus())
|
||||||
.betweenIfPresent(AdminUserDO::getCreateTime, reqVO.getBeginTime(), reqVO.getEndTime())
|
.betweenIfPresent(AdminUserDO::getCreateTime, reqVO.getBeginTime(), reqVO.getEndTime())
|
||||||
.inIfPresent(AdminUserDO::getDeptId, deptIds));
|
.inIfPresent(AdminUserDO::getDeptId, deptIds)
|
||||||
|
.orderByDesc(AdminUserDO::getId));
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
default List<AdminUserDO> selectList(UserExportReqVO reqVO, Collection<Long> deptIds) {
|
default List<AdminUserDO> selectList(UserExportReqVO reqVO, Collection<Long> deptIds) {
|
||||||
|
|
Loading…
Reference in New Issue