Compare commits

...

1 Commits

Author SHA1 Message Date
anthonyywj2 fedfdf1bf4 优化UDI查询 2 years ago

@ -62,7 +62,7 @@ public class UdidlDeviceController {
@ApiImplicitParam(name = "day", value = "指定日期", required = true, dataType = "String") @ApiImplicitParam(name = "day", value = "指定日期", required = true, dataType = "String")
@AuthRuleAnnotation("udidl/device/dlByDay") @AuthRuleAnnotation("udidl/device/dlByDay")
@GetMapping("udidl/device/dlByDay") @GetMapping("udidl/device/dlByDay")
public BaseResponse dlByDay(String day, String jobId) { public BaseResponse dlByDay(String day, String jobId) {
logger.info(day + "---按天开启下载"); logger.info(day + "---按天开启下载");
if (jobId != null) { if (jobId != null) {
@ -113,7 +113,6 @@ public class UdidlDeviceController {
} }
//todo 补全返回参数说明
@ApiOperation(value = "下载指定标识的设备信息", response = DataSetSingleHistoryResult.class) @ApiOperation(value = "下载指定标识的设备信息", response = DataSetSingleHistoryResult.class)
@ApiImplicitParam(name = "deviceId", value = "设备ID", required = true, dataType = "String") @ApiImplicitParam(name = "deviceId", value = "设备ID", required = true, dataType = "String")
@AuthRuleAnnotation("udidl/device/dlByDi") @AuthRuleAnnotation("udidl/device/dlByDi")
@ -136,12 +135,6 @@ public class UdidlDeviceController {
} }
/**
*
*
* @param deviceId
* @return
*/
@ApiOperation(value = "下载单个产品详情", response = DeviceEntity.class) @ApiOperation(value = "下载单个产品详情", response = DeviceEntity.class)
@ApiImplicitParam(name = "deviceId", value = "医疗器械设备ID", required = true, dataType = "String") @ApiImplicitParam(name = "deviceId", value = "医疗器械设备ID", required = true, dataType = "String")
@AuthRuleAnnotation("udidl/device/downloadSingle") @AuthRuleAnnotation("udidl/device/downloadSingle")
@ -172,11 +165,6 @@ public class UdidlDeviceController {
} }
/**
*
*
* @return
*/
@ApiOperation(value = "下载国家库产品数据", response = BaseResponse.class) @ApiOperation(value = "下载国家库产品数据", response = BaseResponse.class)
@AuthRuleAnnotation("") @AuthRuleAnnotation("")
@PostMapping("udidl/device/downloadUdiData") @PostMapping("udidl/device/downloadUdiData")

@ -44,8 +44,14 @@ public class DeviceSaveService {
for (DataSetResult.DeviceInfo item : ds.getDeviceInfo()) { for (DataSetResult.DeviceInfo item : ds.getDeviceInfo()) {
//1:判断数据是否存在 //1:判断数据是否存在
//1.1:正常更新时,若存在相同版本号则跳过
if (StrUtil.isNotEmpty(deviceService.selectDiIsSame(item.getZxxsdycpbs(), item.getVersionNumber() + ""))) if (StrUtil.isNotEmpty(deviceService.selectDiIsSame(item.getZxxsdycpbs(), item.getVersionNumber() + "")))
continue; continue;
//1.2:手动下载更新时
//2,存储 deviceInfo
Device device = responseToDevice(item); Device device = responseToDevice(item);
String uuid = getUUId(); String uuid = getUUId();
Boolean isHistory = false; Boolean isHistory = false;
@ -55,7 +61,6 @@ public class DeviceSaveService {
device.setUuid(uuid); device.setUuid(uuid);
if (requestDate != null) if (requestDate != null)
device.setRequestDate(requestDate); device.setRequestDate(requestDate);
//2,存储 deviceInfo
deviceService.insertDevice(device); deviceService.insertDevice(device);
result++; result++;
//3,存储ContactList //3,存储ContactList

@ -4,9 +4,9 @@ spring:
matching-strategy: ant_path_matcher matching-strategy: ant_path_matcher
datasource: datasource:
driver-class-name: com.mysql.cj.jdbc.Driver driver-class-name: com.mysql.cj.jdbc.Driver
url: jdbc:mysql://192.168.0.66:3360/udidl_test?serverTimezone=Asia/Shanghai&useUnicode=true&characterEncoding=utf8&zeroDateTimeBehavior=convertToNull&useSSL=false&allowPublicKeyRetrieval=true url: jdbc:mysql://127.0.0.1:3306/udidl_test?serverTimezone=Asia/Shanghai&useUnicode=true&characterEncoding=utf8&zeroDateTimeBehavior=convertToNull&useSSL=false&allowPublicKeyRetrieval=true
username: root username: root
password: root password: 123456
hikari: hikari:
pool-name: udidl pool-name: udidl
connection-timeout: 100000 #设置等待超时时间为10秒 connection-timeout: 100000 #设置等待超时时间为10秒

Loading…
Cancel
Save