|
|
|
@ -50,7 +50,7 @@ public class UdiRelController extends BaseController {
|
|
|
|
|
//获取同步库UDI信息
|
|
|
|
|
@AuthRuleAnnotation("")
|
|
|
|
|
@ApiIgnore
|
|
|
|
|
@ApiOperation(value = "获取同步库UDI信息",response = BasicUdiRelResponse.class)
|
|
|
|
|
@ApiOperation(value = "获取同步库UDI信息", response = BasicUdiRelResponse.class)
|
|
|
|
|
@GetMapping("udi/basic/rel/filter")
|
|
|
|
|
public BaseResponse filterRel(FilterUdiRelRequest filterUdiRelRequest) {
|
|
|
|
|
String nameCode;
|
|
|
|
@ -118,7 +118,10 @@ public class UdiRelController extends BaseController {
|
|
|
|
|
BasicUdiProductEntity basicUdiProductEntity = new BasicUdiProductEntity();
|
|
|
|
|
BeanUtils.copyProperties(productInfoEntity, basicUdiProductEntity);
|
|
|
|
|
basicUdiProductEntity.setId(IdUtil.getSnowflakeNextId());
|
|
|
|
|
basicUdiProductService.save(basicUdiProductEntity);
|
|
|
|
|
if (!basicUdiProductService.isExit(basicUdiProductEntity.getUuid())) {
|
|
|
|
|
basicUdiProductService.save(basicUdiProductEntity);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
@ -129,7 +132,7 @@ public class UdiRelController extends BaseController {
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
@AuthRuleAnnotation("")
|
|
|
|
|
@ApiOperation(value = "注册企业删除医疗器械信息",response = BaseResponse.class)
|
|
|
|
|
@ApiOperation(value = "注册企业删除医疗器械信息", response = BaseResponse.class)
|
|
|
|
|
@PostMapping("udi/basic/rel/delete")
|
|
|
|
|
public BaseResponse deletRel(@RequestBody DeleteRequest deleteRequest) {
|
|
|
|
|
basicUdiRelService.removeById(deleteRequest.getId());
|
|
|
|
@ -138,7 +141,7 @@ public class UdiRelController extends BaseController {
|
|
|
|
|
|
|
|
|
|
//产品信息关联修改
|
|
|
|
|
@AuthRuleAnnotation("")
|
|
|
|
|
@ApiOperation(value = "注册企更新除医疗器械信息",response = BaseResponse.class)
|
|
|
|
|
@ApiOperation(value = "注册企更新除医疗器械信息", response = BaseResponse.class)
|
|
|
|
|
@PostMapping("udi/basic/rel/update")
|
|
|
|
|
public BaseResponse updateRel(@RequestBody BasicUdiRelRequest basicUdiRelRequest) {
|
|
|
|
|
|
|
|
|
|