|
|
|
@ -79,19 +79,19 @@ public class SupCertController {
|
|
|
|
|
@Resource
|
|
|
|
|
private SystemPDFModuleService systemPDFModuleService;
|
|
|
|
|
|
|
|
|
|
// @GetMapping("/sup/company/cert/filterList")
|
|
|
|
|
// public BaseResponse filterCompanyCert(certRequest certRequest, BindingResult bindingResult) {
|
|
|
|
|
// if (bindingResult.hasErrors()) {
|
|
|
|
|
// return ResultVOUtils.error(ResultEnum.PARAM_VERIFY_FALL, bindingResult.getFieldError().getDefaultMessage());
|
|
|
|
|
// }
|
|
|
|
|
// List<UserCertEntity> userCertEntities = supCertService.selectBybId(certRequest);
|
|
|
|
|
// PageInfo<UserCertEntity> pageInfo;
|
|
|
|
|
// pageInfo = new PageInfo<>(userCertEntities);
|
|
|
|
|
// PageSimpleResponse<UserCertEntity> pageSimpleResponse = new PageSimpleResponse<>();
|
|
|
|
|
// pageSimpleResponse.setTotal(pageInfo.getTotal());
|
|
|
|
|
// pageSimpleResponse.setList(userCertEntities);
|
|
|
|
|
// return ResultVOUtils.success(pageSimpleResponse);
|
|
|
|
|
// }
|
|
|
|
|
@GetMapping("/sup/company/cert/filterList")
|
|
|
|
|
public BaseResponse filterCompanyCert(certRequest certRequest, BindingResult bindingResult) {
|
|
|
|
|
if (bindingResult.hasErrors()) {
|
|
|
|
|
return ResultVOUtils.error(ResultEnum.PARAM_VERIFY_FALL, bindingResult.getFieldError().getDefaultMessage());
|
|
|
|
|
}
|
|
|
|
|
List<SupCertEntity> supCertEntities = supCertService.selectBybId(certRequest);
|
|
|
|
|
PageInfo<SupCertEntity> pageInfo;
|
|
|
|
|
pageInfo = new PageInfo<>(supCertEntities);
|
|
|
|
|
PageSimpleResponse<SupCertEntity> pageSimpleResponse = new PageSimpleResponse<>();
|
|
|
|
|
pageSimpleResponse.setTotal(pageInfo.getTotal());
|
|
|
|
|
pageSimpleResponse.setList(supCertEntities);
|
|
|
|
|
return ResultVOUtils.success(pageSimpleResponse);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
@AuthRuleAnnotation("")
|
|
|
|
|