优化UDI查询

master
anthonyywj2 2 years ago
parent 986eb2132a
commit fedfdf1bf4

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

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

@ -4,9 +4,9 @@ spring:
matching-strategy: ant_path_matcher
datasource:
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
password: root
password: 123456
hikari:
pool-name: udidl
connection-timeout: 100000 #设置等待超时时间为10秒

Loading…
Cancel
Save