|
|
@ -242,6 +242,59 @@ public class ProductInfoController {
|
|
|
|
return ResultVOUtils.success(pageSimpleResponse);
|
|
|
|
return ResultVOUtils.success(pageSimpleResponse);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
//开放查询 查询全部,不会过滤只显示主
|
|
|
|
|
|
|
|
@ApiOperation(value = "赋码系统下载全部产品信息接口", response = ProductInfoEntity.class)
|
|
|
|
|
|
|
|
@AuthRuleAnnotation("udidl/device/dlDiByPc")
|
|
|
|
|
|
|
|
@GetMapping("udidl/device/dlDiByPc")
|
|
|
|
|
|
|
|
public BaseResponse dlDiByPc(ProductInfoFilterRequest productInfoFilterRequest) {
|
|
|
|
|
|
|
|
//过滤--1.参数不能全未空
|
|
|
|
|
|
|
|
if ((productInfoFilterRequest.getYlqxzcrbarmc() == null || productInfoFilterRequest.getYlqxzcrbarmc().equals("")) &&
|
|
|
|
|
|
|
|
(productInfoFilterRequest.getCpmctymc() == null || productInfoFilterRequest.getCpmctymc().equals("")) &&
|
|
|
|
|
|
|
|
(productInfoFilterRequest.getNameCode() == null || productInfoFilterRequest.getNameCode().equals("")) &&
|
|
|
|
|
|
|
|
(productInfoFilterRequest.getGgxh() == null || productInfoFilterRequest.getGgxh().equals("")) &&
|
|
|
|
|
|
|
|
(productInfoFilterRequest.getUuid() == null || productInfoFilterRequest.getUuid().equals("")) &&
|
|
|
|
|
|
|
|
(productInfoFilterRequest.getZczbhhzbapzbh() == null || productInfoFilterRequest.getZczbhhzbapzbh().equals("")) &&
|
|
|
|
|
|
|
|
(productInfoFilterRequest.getDeviceRecordKey() == null || productInfoFilterRequest.getDeviceRecordKey().equals(""))
|
|
|
|
|
|
|
|
) {
|
|
|
|
|
|
|
|
return ResultVOUtils.error(500, "参数不能为空!");
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
if (productInfoFilterRequest.getNameCode() != null && !productInfoFilterRequest.getNameCode().equals("") && productInfoFilterRequest.getNameCode().length() < 10) {
|
|
|
|
|
|
|
|
return ResultVOUtils.error(500, "请输入完整的最小销售单元标识!");
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
if (productInfoFilterRequest.getYlqxzcrbarmc() != null && !productInfoFilterRequest.getYlqxzcrbarmc().equals("") && productInfoFilterRequest.getYlqxzcrbarmc().length() < 4) {
|
|
|
|
|
|
|
|
return ResultVOUtils.error(500, "请输入完整的医疗器械注册备案人名称!");
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
if ((productInfoFilterRequest.getYlqxzcrbarmc() == null || productInfoFilterRequest.getYlqxzcrbarmc().equals(""))
|
|
|
|
|
|
|
|
&& (productInfoFilterRequest.getNameCode() == null || productInfoFilterRequest.getNameCode().equals(""))
|
|
|
|
|
|
|
|
&& (productInfoFilterRequest.getCpmctymc() == null || productInfoFilterRequest.getCpmctymc().equals(""))
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
) {
|
|
|
|
|
|
|
|
if (productInfoFilterRequest.getGgxh() != null && !productInfoFilterRequest.getGgxh().equals("")) {
|
|
|
|
|
|
|
|
return ResultVOUtils.error(500, "请输入医疗器械注册备案人名称");
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
if (productInfoFilterRequest.getZczbhhzbapzbh() != null && !productInfoFilterRequest.getZczbhhzbapzbh().equals("")) {
|
|
|
|
|
|
|
|
return ResultVOUtils.error(500, "请输入医疗器械注册备案人名称");
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
if (productInfoFilterRequest.getCpmctymc() != null && !productInfoFilterRequest.getCpmctymc().equals("") && productInfoFilterRequest.getCpmctymc().length() < 4) {
|
|
|
|
|
|
|
|
return ResultVOUtils.error(500, "请输入完整的产品通用名称!");
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
productInfoFilterRequest.setIsNewest(1);
|
|
|
|
|
|
|
|
List<ProductInfoEntity> productInfoEntityList = productInfoService.filterUdi(productInfoFilterRequest);
|
|
|
|
|
|
|
|
PageInfo<ProductInfoEntity> pageInfo;
|
|
|
|
|
|
|
|
pageInfo = new PageInfo<>(productInfoEntityList);
|
|
|
|
|
|
|
|
PageSimpleResponse<ProductInfoEntity> pageSimpleResponse = new PageSimpleResponse<>();
|
|
|
|
|
|
|
|
pageSimpleResponse.setTotal(pageInfo.getTotal());
|
|
|
|
|
|
|
|
pageSimpleResponse.setList(productInfoEntityList);
|
|
|
|
|
|
|
|
return ResultVOUtils.success(pageSimpleResponse);
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
@ApiOperation(value = "根据UUID查询产品信息", response = ProductInfoEntity.class)
|
|
|
|
@ApiOperation(value = "根据UUID查询产品信息", response = ProductInfoEntity.class)
|
|
|
|
@AuthRuleAnnotation("udidl/device/filterByUuid")
|
|
|
|
@AuthRuleAnnotation("udidl/device/filterByUuid")
|
|
|
|
@GetMapping("udidl/device/filterByUuid")
|
|
|
|
@GetMapping("udidl/device/filterByUuid")
|
|
|
|