|
|
|
@ -71,6 +71,18 @@ public class SupProductController {
|
|
|
|
|
return ResultVOUtils.error(500, "企业信息为空");
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
@AuthRuleAnnotation("")
|
|
|
|
|
@GetMapping("/sup/product/getRegistrationList")
|
|
|
|
|
public BaseResponse getRegistraList(FilterPoductRequest filterPoductRequest) {
|
|
|
|
|
List<SupProductResponse> companyEntities = supProductService.getRegistration(filterPoductRequest);
|
|
|
|
|
PageInfo<SupProductResponse> pageInfo = new PageInfo<>(companyEntities);
|
|
|
|
|
PageSimpleResponse<SupProductResponse> pageSimpleResponse = new PageSimpleResponse<>();
|
|
|
|
|
pageSimpleResponse.setTotal(pageInfo.getTotal());
|
|
|
|
|
pageSimpleResponse.setList(companyEntities);
|
|
|
|
|
return ResultVOUtils.success(pageSimpleResponse);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
@AuthRuleAnnotation("")
|
|
|
|
|
@GetMapping("/directToCpt/sup/product/getRegistrationList")
|
|
|
|
|
public BaseResponse getRegistrationList(FilterPoductRequest filterPoductRequest) {
|
|
|
|
|