|
|
|
@ -123,6 +123,35 @@ public class AnnualCompetitionProjectRegistrationController { |
|
|
|
|
return Result.OK(); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
/** |
|
|
|
|
* 1分页列表查询 |
|
|
|
|
* |
|
|
|
|
* @param annualCompetitionProjectRegistration |
|
|
|
|
* @param pageNo |
|
|
|
|
* @param pageSize |
|
|
|
|
* @param req |
|
|
|
|
* @return |
|
|
|
|
*/ |
|
|
|
|
//@AutoLog(value = "年度比赛项目报名-分页列表查询")
|
|
|
|
|
@ApiOperation(value = "年度比赛项目报名-分页列表查询", notes = "年度比赛项目报名-分页列表查询") |
|
|
|
|
@GetMapping(value = "/liststu") |
|
|
|
|
public Result<IPage<AnnualCompetitionProjectRegistration>> liststu(AnnualCompetitionProjectRegistration annualCompetitionProjectRegistration, |
|
|
|
|
@RequestParam(name = "pageNo", defaultValue = "1") Integer pageNo, |
|
|
|
|
@RequestParam(name = "pageSize", defaultValue = "10") Integer pageSize, |
|
|
|
|
HttpServletRequest req) { |
|
|
|
|
//处理查询信息
|
|
|
|
|
QueryWrapper<AnnualCompetitionProjectRegistration> queryWrapper = QueryGenerator.initQueryWrapper(annualCompetitionProjectRegistration, req.getParameterMap()); |
|
|
|
|
Page<AnnualCompetitionProjectRegistration> page = new Page<AnnualCompetitionProjectRegistration>(pageNo, pageSize); |
|
|
|
|
//根据用户角色决定查询信息
|
|
|
|
|
queryWrapperAddRoleInfo(queryWrapper); |
|
|
|
|
//查询
|
|
|
|
|
IPage<AnnualCompetitionProjectRegistration> pageList = annualCompetitionProjectRegistrationService.page(page, queryWrapper); |
|
|
|
|
//处理返回信息
|
|
|
|
|
processData(pageList.getRecords()); |
|
|
|
|
|
|
|
|
|
return Result.OK(pageList); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/** |
|
|
|
|
* 1分页列表查询 |
|
|
|
@ -143,8 +172,40 @@ public class AnnualCompetitionProjectRegistrationController { |
|
|
|
|
//处理查询信息
|
|
|
|
|
QueryWrapper<AnnualCompetitionProjectRegistration> queryWrapper = QueryGenerator.initQueryWrapper(annualCompetitionProjectRegistration, req.getParameterMap()); |
|
|
|
|
Page<AnnualCompetitionProjectRegistration> page = new Page<AnnualCompetitionProjectRegistration>(pageNo, pageSize); |
|
|
|
|
LoginUser loginUser = (LoginUser) SecurityUtils.getSubject().getPrincipal(); |
|
|
|
|
//根据登录信息查询负责比赛
|
|
|
|
|
List<Comp> compList =compService.query().eq("comp_admin",loginUser.getUsername()).list(); |
|
|
|
|
//判空
|
|
|
|
|
if (compList.isEmpty()){ |
|
|
|
|
return Result.error("未绑定比赛"); |
|
|
|
|
} |
|
|
|
|
//将比赛的id放进一个list里面
|
|
|
|
|
List<String> compIds = compList.stream() |
|
|
|
|
.map(Comp::getId) // 使用方法引用获取每个Comp对象的id
|
|
|
|
|
.collect(Collectors.toList()); // 收集到List中
|
|
|
|
|
//根据比赛的id查询年度比赛id,这里没有去卡年度
|
|
|
|
|
List<AnnualComp> annualCompList = annualCompService.query().in("compid",compIds).list(); |
|
|
|
|
//判空
|
|
|
|
|
if (annualCompList.isEmpty()){ |
|
|
|
|
return Result.error("未创建年度比赛"); |
|
|
|
|
} |
|
|
|
|
//将年度比赛id存放到一个list里面
|
|
|
|
|
List<String> anncompIds = annualCompList.stream() |
|
|
|
|
.map(AnnualComp::getId) // 使用方法引用获取每个Comp对象的id
|
|
|
|
|
.collect(Collectors.toList()); // 收集到List中
|
|
|
|
|
List<AnnualCompPoint> annualCompPointList = annualCompPointService.query().in("annual_comp_id", anncompIds).list(); |
|
|
|
|
//判空
|
|
|
|
|
if (annualCompPointList.isEmpty()){ |
|
|
|
|
return Result.error("未创建年度比赛项目"); |
|
|
|
|
} |
|
|
|
|
//将年度比赛项目id存放到一个list里面
|
|
|
|
|
List<String> anncomppointIds = annualCompPointList.stream() |
|
|
|
|
.map(AnnualCompPoint::getId) // 使用方法引用获取每个Comp对象的id
|
|
|
|
|
.collect(Collectors.toList()); // 收集到List中
|
|
|
|
|
|
|
|
|
|
//根据用户角色决定查询信息
|
|
|
|
|
queryWrapperAddRoleInfo(queryWrapper); |
|
|
|
|
queryWrapper.in("annual_compid",anncomppointIds); |
|
|
|
|
/* queryWrapperAddRoleInfo(queryWrapper);*/ |
|
|
|
|
//查询
|
|
|
|
|
IPage<AnnualCompetitionProjectRegistration> pageList = annualCompetitionProjectRegistrationService.page(page, queryWrapper); |
|
|
|
|
//处理返回信息
|
|
|
|
@ -163,8 +224,40 @@ public class AnnualCompetitionProjectRegistrationController { |
|
|
|
|
//处理查询信息
|
|
|
|
|
QueryWrapper<AnnualCompetitionProjectRegistration> queryWrapper = QueryGenerator.initQueryWrapper(annualCompetitionProjectRegistration, req.getParameterMap()); |
|
|
|
|
Page<AnnualCompetitionProjectRegistration> page = new Page<AnnualCompetitionProjectRegistration>(pageNo, pageSize); |
|
|
|
|
LoginUser loginUser = (LoginUser) SecurityUtils.getSubject().getPrincipal(); |
|
|
|
|
//根据登录信息查询负责比赛
|
|
|
|
|
List<Comp> compList =compService.query().eq("comp_admin",loginUser.getUsername()).list(); |
|
|
|
|
//判空
|
|
|
|
|
if (compList.isEmpty()){ |
|
|
|
|
return Result.error("未绑定比赛"); |
|
|
|
|
} |
|
|
|
|
//将比赛的id放进一个list里面
|
|
|
|
|
List<String> compIds = compList.stream() |
|
|
|
|
.map(Comp::getId) // 使用方法引用获取每个Comp对象的id
|
|
|
|
|
.collect(Collectors.toList()); // 收集到List中
|
|
|
|
|
//根据比赛的id查询年度比赛id,这里没有去卡年度
|
|
|
|
|
List<AnnualComp> annualCompList = annualCompService.query().in("compid",compIds).list(); |
|
|
|
|
//判空
|
|
|
|
|
if (annualCompList.isEmpty()){ |
|
|
|
|
return Result.error("未创建年度比赛"); |
|
|
|
|
} |
|
|
|
|
//将年度比赛id存放到一个list里面
|
|
|
|
|
List<String> anncompIds = annualCompList.stream() |
|
|
|
|
.map(AnnualComp::getId) // 使用方法引用获取每个Comp对象的id
|
|
|
|
|
.collect(Collectors.toList()); // 收集到List中
|
|
|
|
|
List<AnnualCompPoint> annualCompPointList = annualCompPointService.query().in("annual_comp_id", anncompIds).list(); |
|
|
|
|
//判空
|
|
|
|
|
if (annualCompPointList.isEmpty()){ |
|
|
|
|
return Result.error("未创建年度比赛项目"); |
|
|
|
|
} |
|
|
|
|
//将年度比赛项目id存放到一个list里面
|
|
|
|
|
List<String> anncomppointIds = annualCompPointList.stream() |
|
|
|
|
.map(AnnualCompPoint::getId) // 使用方法引用获取每个Comp对象的id
|
|
|
|
|
.collect(Collectors.toList()); // 收集到List中
|
|
|
|
|
|
|
|
|
|
//根据用户角色决定查询信息
|
|
|
|
|
queryWrapperAddRoleInfo(queryWrapper); |
|
|
|
|
queryWrapper.in("annual_compid",anncomppointIds); |
|
|
|
|
/* queryWrapperAddRoleInfo(queryWrapper);*/ |
|
|
|
|
queryWrapper.eq("enroll_static", "2"); |
|
|
|
|
//查询
|
|
|
|
|
IPage<AnnualCompetitionProjectRegistration> pageList = annualCompetitionProjectRegistrationService.page(page, queryWrapper); |
|
|
|
@ -184,8 +277,41 @@ public class AnnualCompetitionProjectRegistrationController { |
|
|
|
|
//处理查询信息
|
|
|
|
|
QueryWrapper<AnnualCompetitionProjectRegistration> queryWrapper = QueryGenerator.initQueryWrapper(annualCompetitionProjectRegistration, req.getParameterMap()); |
|
|
|
|
Page<AnnualCompetitionProjectRegistration> page = new Page<AnnualCompetitionProjectRegistration>(pageNo, pageSize); |
|
|
|
|
LoginUser loginUser = (LoginUser) SecurityUtils.getSubject().getPrincipal(); |
|
|
|
|
|
|
|
|
|
//根据登录信息查询负责比赛
|
|
|
|
|
List<Comp> compList =compService.query().eq("comp_admin",loginUser.getUsername()).list(); |
|
|
|
|
//判空
|
|
|
|
|
if (compList.isEmpty()){ |
|
|
|
|
return Result.error("未绑定比赛"); |
|
|
|
|
} |
|
|
|
|
//将比赛的id放进一个list里面
|
|
|
|
|
List<String> compIds = compList.stream() |
|
|
|
|
.map(Comp::getId) // 使用方法引用获取每个Comp对象的id
|
|
|
|
|
.collect(Collectors.toList()); // 收集到List中
|
|
|
|
|
//根据比赛的id查询年度比赛id,这里没有去卡年度
|
|
|
|
|
List<AnnualComp> annualCompList = annualCompService.query().in("compid",compIds).list(); |
|
|
|
|
//判空
|
|
|
|
|
if (annualCompList.isEmpty()){ |
|
|
|
|
return Result.error("未创建年度比赛"); |
|
|
|
|
} |
|
|
|
|
//将年度比赛id存放到一个list里面
|
|
|
|
|
List<String> anncompIds = annualCompList.stream() |
|
|
|
|
.map(AnnualComp::getId) // 使用方法引用获取每个Comp对象的id
|
|
|
|
|
.collect(Collectors.toList()); // 收集到List中
|
|
|
|
|
List<AnnualCompPoint> annualCompPointList = annualCompPointService.query().in("annual_comp_id", anncompIds).list(); |
|
|
|
|
//判空
|
|
|
|
|
if (annualCompPointList.isEmpty()){ |
|
|
|
|
return Result.error("未创建年度比赛项目"); |
|
|
|
|
} |
|
|
|
|
//将年度比赛项目id存放到一个list里面
|
|
|
|
|
List<String> anncomppointIds = annualCompPointList.stream() |
|
|
|
|
.map(AnnualCompPoint::getId) // 使用方法引用获取每个Comp对象的id
|
|
|
|
|
.collect(Collectors.toList()); // 收集到List中
|
|
|
|
|
|
|
|
|
|
//根据用户角色决定查询信息
|
|
|
|
|
queryWrapperAddRoleInfo(queryWrapper); |
|
|
|
|
queryWrapper.in("annual_compid",anncomppointIds); |
|
|
|
|
/* queryWrapperAddRoleInfo(queryWrapper);*/ |
|
|
|
|
queryWrapper.eq("enroll_static", "4"); |
|
|
|
|
//查询
|
|
|
|
|
IPage<AnnualCompetitionProjectRegistration> pageList = annualCompetitionProjectRegistrationService.page(page, queryWrapper); |
|
|
|
@ -206,8 +332,40 @@ public class AnnualCompetitionProjectRegistrationController { |
|
|
|
|
//处理查询信息
|
|
|
|
|
QueryWrapper<AnnualCompetitionProjectRegistration> queryWrapper = QueryGenerator.initQueryWrapper(annualCompetitionProjectRegistration, req.getParameterMap()); |
|
|
|
|
Page<AnnualCompetitionProjectRegistration> page = new Page<AnnualCompetitionProjectRegistration>(pageNo, pageSize); |
|
|
|
|
LoginUser loginUser = (LoginUser) SecurityUtils.getSubject().getPrincipal(); |
|
|
|
|
//根据登录信息查询负责比赛
|
|
|
|
|
List<Comp> compList =compService.query().eq("comp_admin",loginUser.getUsername()).list(); |
|
|
|
|
//判空
|
|
|
|
|
if (compList.isEmpty()){ |
|
|
|
|
return Result.error("未绑定比赛"); |
|
|
|
|
} |
|
|
|
|
//将比赛的id放进一个list里面
|
|
|
|
|
List<String> compIds = compList.stream() |
|
|
|
|
.map(Comp::getId) // 使用方法引用获取每个Comp对象的id
|
|
|
|
|
.collect(Collectors.toList()); // 收集到List中
|
|
|
|
|
//根据比赛的id查询年度比赛id,这里没有去卡年度
|
|
|
|
|
List<AnnualComp> annualCompList = annualCompService.query().in("compid",compIds).list(); |
|
|
|
|
//判空
|
|
|
|
|
if (annualCompList.isEmpty()){ |
|
|
|
|
return Result.error("未创建年度比赛"); |
|
|
|
|
} |
|
|
|
|
//将年度比赛id存放到一个list里面
|
|
|
|
|
List<String> anncompIds = annualCompList.stream() |
|
|
|
|
.map(AnnualComp::getId) // 使用方法引用获取每个Comp对象的id
|
|
|
|
|
.collect(Collectors.toList()); // 收集到List中
|
|
|
|
|
List<AnnualCompPoint> annualCompPointList = annualCompPointService.query().in("annual_comp_id", anncompIds).list(); |
|
|
|
|
//判空
|
|
|
|
|
if (annualCompPointList.isEmpty()){ |
|
|
|
|
return Result.error("未创建年度比赛项目"); |
|
|
|
|
} |
|
|
|
|
//将年度比赛项目id存放到一个list里面
|
|
|
|
|
List<String> anncomppointIds = annualCompPointList.stream() |
|
|
|
|
.map(AnnualCompPoint::getId) // 使用方法引用获取每个Comp对象的id
|
|
|
|
|
.collect(Collectors.toList()); // 收集到List中
|
|
|
|
|
|
|
|
|
|
//根据用户角色决定查询信息
|
|
|
|
|
queryWrapperAddRoleInfo(queryWrapper); |
|
|
|
|
queryWrapper.in("annual_compid",anncomppointIds); |
|
|
|
|
/* queryWrapperAddRoleInfo(queryWrapper);*/ |
|
|
|
|
queryWrapper.eq("enroll_static", "1"); |
|
|
|
|
//查询
|
|
|
|
|
IPage<AnnualCompetitionProjectRegistration> pageList = annualCompetitionProjectRegistrationService.page(page, queryWrapper); |
|
|
|
@ -227,8 +385,40 @@ public class AnnualCompetitionProjectRegistrationController { |
|
|
|
|
//处理查询信息
|
|
|
|
|
QueryWrapper<AnnualCompetitionProjectRegistration> queryWrapper = QueryGenerator.initQueryWrapper(annualCompetitionProjectRegistration, req.getParameterMap()); |
|
|
|
|
Page<AnnualCompetitionProjectRegistration> page = new Page<AnnualCompetitionProjectRegistration>(pageNo, pageSize); |
|
|
|
|
LoginUser loginUser = (LoginUser) SecurityUtils.getSubject().getPrincipal(); |
|
|
|
|
//根据登录信息查询负责比赛
|
|
|
|
|
List<Comp> compList =compService.query().eq("comp_admin",loginUser.getUsername()).list(); |
|
|
|
|
//判空
|
|
|
|
|
if (compList.isEmpty()){ |
|
|
|
|
return Result.error("未绑定比赛"); |
|
|
|
|
} |
|
|
|
|
//将比赛的id放进一个list里面
|
|
|
|
|
List<String> compIds = compList.stream() |
|
|
|
|
.map(Comp::getId) // 使用方法引用获取每个Comp对象的id
|
|
|
|
|
.collect(Collectors.toList()); // 收集到List中
|
|
|
|
|
//根据比赛的id查询年度比赛id,这里没有去卡年度
|
|
|
|
|
List<AnnualComp> annualCompList = annualCompService.query().in("compid",compIds).list(); |
|
|
|
|
//判空
|
|
|
|
|
if (annualCompList.isEmpty()){ |
|
|
|
|
return Result.error("未创建年度比赛"); |
|
|
|
|
} |
|
|
|
|
//将年度比赛id存放到一个list里面
|
|
|
|
|
List<String> anncompIds = annualCompList.stream() |
|
|
|
|
.map(AnnualComp::getId) // 使用方法引用获取每个Comp对象的id
|
|
|
|
|
.collect(Collectors.toList()); // 收集到List中
|
|
|
|
|
List<AnnualCompPoint> annualCompPointList = annualCompPointService.query().in("annual_comp_id", anncompIds).list(); |
|
|
|
|
//判空
|
|
|
|
|
if (annualCompPointList.isEmpty()){ |
|
|
|
|
return Result.error("未创建年度比赛项目"); |
|
|
|
|
} |
|
|
|
|
//将年度比赛项目id存放到一个list里面
|
|
|
|
|
List<String> anncomppointIds = annualCompPointList.stream() |
|
|
|
|
.map(AnnualCompPoint::getId) // 使用方法引用获取每个Comp对象的id
|
|
|
|
|
.collect(Collectors.toList()); // 收集到List中
|
|
|
|
|
|
|
|
|
|
//根据用户角色决定查询信息
|
|
|
|
|
queryWrapperAddRoleInfo(queryWrapper); |
|
|
|
|
queryWrapper.in("annual_compid",anncomppointIds); |
|
|
|
|
/* queryWrapperAddRoleInfo(queryWrapper);*/ |
|
|
|
|
queryWrapper.eq("enroll_static", "0"); |
|
|
|
|
//查询
|
|
|
|
|
IPage<AnnualCompetitionProjectRegistration> pageList = annualCompetitionProjectRegistrationService.page(page, queryWrapper); |
|
|
|
@ -248,8 +438,40 @@ public class AnnualCompetitionProjectRegistrationController { |
|
|
|
|
//处理查询信息
|
|
|
|
|
QueryWrapper<AnnualCompetitionProjectRegistration> queryWrapper = QueryGenerator.initQueryWrapper(annualCompetitionProjectRegistration, req.getParameterMap()); |
|
|
|
|
Page<AnnualCompetitionProjectRegistration> page = new Page<AnnualCompetitionProjectRegistration>(pageNo, pageSize); |
|
|
|
|
LoginUser loginUser = (LoginUser) SecurityUtils.getSubject().getPrincipal(); |
|
|
|
|
//根据登录信息查询负责比赛
|
|
|
|
|
List<Comp> compList =compService.query().eq("comp_admin",loginUser.getUsername()).list(); |
|
|
|
|
//判空
|
|
|
|
|
if (compList.isEmpty()){ |
|
|
|
|
return Result.error("未绑定比赛"); |
|
|
|
|
} |
|
|
|
|
//将比赛的id放进一个list里面
|
|
|
|
|
List<String> compIds = compList.stream() |
|
|
|
|
.map(Comp::getId) // 使用方法引用获取每个Comp对象的id
|
|
|
|
|
.collect(Collectors.toList()); // 收集到List中
|
|
|
|
|
//根据比赛的id查询年度比赛id,这里没有去卡年度
|
|
|
|
|
List<AnnualComp> annualCompList = annualCompService.query().in("compid",compIds).list(); |
|
|
|
|
//判空
|
|
|
|
|
if (annualCompList.isEmpty()){ |
|
|
|
|
return Result.error("未创建年度比赛"); |
|
|
|
|
} |
|
|
|
|
//将年度比赛id存放到一个list里面
|
|
|
|
|
List<String> anncompIds = annualCompList.stream() |
|
|
|
|
.map(AnnualComp::getId) // 使用方法引用获取每个Comp对象的id
|
|
|
|
|
.collect(Collectors.toList()); // 收集到List中
|
|
|
|
|
List<AnnualCompPoint> annualCompPointList = annualCompPointService.query().in("annual_comp_id", anncompIds).list(); |
|
|
|
|
//判空
|
|
|
|
|
if (annualCompPointList.isEmpty()){ |
|
|
|
|
return Result.error("未创建年度比赛项目"); |
|
|
|
|
} |
|
|
|
|
//将年度比赛项目id存放到一个list里面
|
|
|
|
|
List<String> anncomppointIds = annualCompPointList.stream() |
|
|
|
|
.map(AnnualCompPoint::getId) // 使用方法引用获取每个Comp对象的id
|
|
|
|
|
.collect(Collectors.toList()); // 收集到List中
|
|
|
|
|
|
|
|
|
|
//根据用户角色决定查询信息
|
|
|
|
|
queryWrapperAddRoleInfo(queryWrapper); |
|
|
|
|
queryWrapper.in("annual_compid",anncomppointIds); |
|
|
|
|
/* queryWrapperAddRoleInfo(queryWrapper);*/ |
|
|
|
|
queryWrapper.eq("enroll_static", "3"); |
|
|
|
|
//查询
|
|
|
|
|
IPage<AnnualCompetitionProjectRegistration> pageList = annualCompetitionProjectRegistrationService.page(page, queryWrapper); |
|
|
|
@ -273,6 +495,9 @@ public class AnnualCompetitionProjectRegistrationController { |
|
|
|
|
} else if (role.equals("committee")) { |
|
|
|
|
//首先获取负责的比赛
|
|
|
|
|
List<Comp> compList = compService.query().eq("comp_admin",loginUser.getUsername()).list(); |
|
|
|
|
if(compList.isEmpty()){ |
|
|
|
|
return ; |
|
|
|
|
} |
|
|
|
|
//将比赛的id放进一个list里面
|
|
|
|
|
List<String> compIds = compList.stream() |
|
|
|
|
.map(Comp::getId) // 使用方法引用获取每个Comp对象的id
|
|
|
|
@ -995,7 +1220,7 @@ public class AnnualCompetitionProjectRegistrationController { |
|
|
|
|
LoginUser user = (LoginUser) SecurityUtils.getSubject().getPrincipal(); |
|
|
|
|
Comp comp = new Comp(); |
|
|
|
|
QueryWrapper<Comp> queryWrappercomp = QueryGenerator.initQueryWrapper(comp, req.getParameterMap()); |
|
|
|
|
queryWrappercomp.like("comp_admin", user.getUsername()); |
|
|
|
|
queryWrappercomp.eq("comp_admin", user.getUsername()); |
|
|
|
|
List<Comp> list = compService.list(queryWrappercomp); |
|
|
|
|
Map<String, Object> map = new HashMap<>(); |
|
|
|
|
if (list.size() > 0) { |
|
|
|
@ -1774,7 +1999,7 @@ public class AnnualCompetitionProjectRegistrationController { |
|
|
|
|
LoginUser user = (LoginUser) SecurityUtils.getSubject().getPrincipal(); |
|
|
|
|
Comp comp = new Comp(); |
|
|
|
|
QueryWrapper<Comp> queryWrappercomp = QueryGenerator.initQueryWrapper(comp, req.getParameterMap()); |
|
|
|
|
queryWrappercomp.like("comp_admin", user.getUsername()); |
|
|
|
|
queryWrappercomp.eq("comp_admin", user.getUsername()); |
|
|
|
|
List<Comp> list = compService.list(queryWrappercomp); |
|
|
|
|
Map<String, Object> map = new HashMap<>(); |
|
|
|
|
if (list.size() > 0) { |
|
|
|
@ -2129,7 +2354,7 @@ public class AnnualCompetitionProjectRegistrationController { |
|
|
|
|
LoginUser user = (LoginUser) SecurityUtils.getSubject().getPrincipal(); |
|
|
|
|
Comp comp = new Comp(); |
|
|
|
|
QueryWrapper<Comp> queryWrappercomp = QueryGenerator.initQueryWrapper(comp, req.getParameterMap()); |
|
|
|
|
queryWrappercomp.like("comp_admin",user.getUsername()); |
|
|
|
|
queryWrappercomp.eq("comp_admin",user.getUsername()); |
|
|
|
|
List<Comp> list = compService.list(queryWrappercomp); |
|
|
|
|
List<String> ids = list.stream().map(Comp::getId).collect(Collectors.toList()); |
|
|
|
|
QueryWrapper<AnnualComp> queryWrapperAnnual = new QueryWrapper<>(); |
|
|
|
|