Java Code Examples for com.baomidou.mybatisplus.core.toolkit.Constants#WRAPPER
The following examples show how to use
com.baomidou.mybatisplus.core.toolkit.Constants#WRAPPER .
You can vote up the ones you like or vote down the ones you don't like,
and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example 1
Source File: SysUserMapper.java From jeecg-boot with Apache License 2.0 | 2 votes |
/** * 查询被逻辑删除的用户 */ List<SysUser> selectLogicDeleted(@Param(Constants.WRAPPER) Wrapper<SysUser> wrapper);
Example 2
Source File: DeptRepository.java From albedo with GNU Lesser General Public License v3.0 | 2 votes |
/** * 部门树数据集合 * * @param wrapper * @return */ List<DeptVo> findVoList(@Param(Constants.WRAPPER) QueryWrapper<Dept> wrapper);
Example 3
Source File: UserRepository.java From albedo with GNU Lesser General Public License v3.0 | 2 votes |
/** * 分页查询用户信息(含角色) * * @param wrapper 查询参数 * @param dataScope 数据权限 * @return list */ List<UserVo> findUserVoPage(@Param(Constants.WRAPPER) Wrapper<User> wrapper, DataScope dataScope);
Example 4
Source File: UserRepository.java From albedo with GNU Lesser General Public License v3.0 | 2 votes |
/** * 分页查询用户信息(含角色) * * @param page 分页 * @param wrapper 查询参数 * @param dataScope 数据权限 * @return list */ IPage<UserVo> findUserVoPage(IPage page, @Param(Constants.WRAPPER) Wrapper<User> wrapper, DataScope dataScope);
Example 5
Source File: DictRepository.java From albedo with GNU Lesser General Public License v3.0 | 2 votes |
/** * 字典树数据集合 * * @param wrapper * @return */ List<DictVo> findDictVoList(@Param(Constants.WRAPPER) QueryWrapper<Dict> wrapper);
Example 6
Source File: JobLogRepository.java From albedo with GNU Lesser General Public License v3.0 | 2 votes |
/** * 获取导出集合 * * @param wrapper * @return */ List<JobLogExcelVo> findExcelVo(@Param(Constants.WRAPPER) Wrapper wrapper);
Example 7
Source File: SchemeRepository.java From albedo with GNU Lesser General Public License v3.0 | 2 votes |
/** * 分页查询方案信息 * * @param page 分页 * @param wrapper 查询参数 * @return list */ IPage<List<SchemeVo>> getSchemeVoPage(IPage page, @Param(Constants.WRAPPER) Wrapper wrapper);
Example 8
Source File: GeneratorMapper.java From spring-cloud-shop with MIT License | 2 votes |
/** * 查询表元素 */ List<Columns> selectColumns(@Param(Constants.WRAPPER) Wrapper<Columns> qw);
Example 9
Source File: GeneratorMapper.java From spring-cloud-shop with MIT License | 2 votes |
/** * 查询表 */ IPage<Tables> selectTables(IPage<Tables> page, @Param(Constants.WRAPPER) Wrapper<Tables> qw);
Example 10
Source File: SysUserMapper.java From jeecg-cloud with Apache License 2.0 | 2 votes |
/** * 查询被逻辑删除的用户 */ List<SysUser> selectLogicDeleted(@Param(Constants.WRAPPER) Wrapper<SysUser> wrapper);
Example 11
Source File: StationMapper.java From zuihou-admin-cloud with Apache License 2.0 | 2 votes |
/** * 分页查询岗位信息(含角色) * * @param page * @param queryWrapper * @param dataScope * @return */ IPage<Station> findStationPage(IPage page, @Param(Constants.WRAPPER) Wrapper<Station> queryWrapper, DataScope dataScope);
Example 12
Source File: UserMapper.java From zuihou-admin-cloud with Apache License 2.0 | 2 votes |
/** * 带数据权限的分页查询 * * @param page * @param wrapper * @param dataScope * @return */ IPage<User> findPage(IPage<User> page, @Param(Constants.WRAPPER) Wrapper<User> wrapper, DataScope dataScope);
Example 13
Source File: MyBaseMapper.java From summerframework with Apache License 2.0 | 2 votes |
/** * 内部使用方法 强转Ipage对象 * * @param page * @param queryWrapper * @return */ default Page<T> selectPage(Page<T> page, @Param(Constants.WRAPPER) Wrapper<T> queryWrapper) { return (Page<T>)selectPage((IPage<T>)page, queryWrapper); }
Example 14
Source File: SysUserMapper.java From teaching with Apache License 2.0 | 2 votes |
/** * 查询被逻辑删除的用户 */ List<SysUser> selectLogicDeleted(@Param(Constants.WRAPPER) Wrapper<SysUser> wrapper);
Example 15
Source File: BaseDao.java From plumemo with Apache License 2.0 | 2 votes |
/** * 逻辑删除 * @param entity * @param updateWrapper * @return */ int logicDeleteByWrapper(@Param(Constants.ENTITY) T entity, @Param(Constants.WRAPPER) Wrapper<T> updateWrapper);
Example 16
Source File: StationMapper.java From zuihou-admin-boot with Apache License 2.0 | 2 votes |
/** * 分页查询岗位信息(含角色) * * @param page * @param queryWrapper * @param dataScope * @return */ IPage<Station> findStationPage(IPage page, @Param(Constants.WRAPPER) Wrapper<Station> queryWrapper, DataScope dataScope);
Example 17
Source File: UserMapper.java From zuihou-admin-boot with Apache License 2.0 | 2 votes |
/** * 带数据权限的分页查询 * * @param page * @param wrapper * @param dataScope * @return */ IPage<User> findPage(IPage<User> page, @Param(Constants.WRAPPER) Wrapper<User> wrapper, DataScope dataScope);
Example 18
Source File: CategoryDao.java From plumemo with Apache License 2.0 | votes |
IPage<CategoryVO> selectStatistics(Page page, @Param(Constants.WRAPPER) Wrapper<CategoryVO> queryWrapper);