|
|
|
@ -2,10 +2,12 @@ package com.glxp.udidl.admin.controller.device;
|
|
|
|
|
|
|
|
|
|
import com.glxp.udidl.admin.annotation.AuthRuleAnnotation;
|
|
|
|
|
import com.glxp.udidl.admin.entity.udid.DeviceEntity;
|
|
|
|
|
import com.glxp.udidl.admin.req.ProductInfoFilterRequest;
|
|
|
|
|
import com.glxp.udidl.admin.req.udid.DeviceRequest;
|
|
|
|
|
import com.glxp.udidl.admin.res.BaseResponse;
|
|
|
|
|
import com.glxp.udidl.admin.res.udid.DataSetSingleHistoryResult;
|
|
|
|
|
import com.glxp.udidl.admin.service.dataSync.DeviceSyncService;
|
|
|
|
|
import com.glxp.udidl.admin.service.inout.ProductInfoService;
|
|
|
|
|
import com.glxp.udidl.admin.util.ResultVOUtils;
|
|
|
|
|
import io.swagger.annotations.Api;
|
|
|
|
|
import io.swagger.annotations.ApiImplicitParam;
|
|
|
|
@ -20,6 +22,7 @@ import org.springframework.web.bind.annotation.PostMapping;
|
|
|
|
|
import org.springframework.web.bind.annotation.RequestBody;
|
|
|
|
|
import org.springframework.web.bind.annotation.RestController;
|
|
|
|
|
|
|
|
|
|
import javax.annotation.Resource;
|
|
|
|
|
import java.util.Date;
|
|
|
|
|
|
|
|
|
|
@Api(tags = "下载医疗器械信息接口")
|
|
|
|
@ -30,6 +33,8 @@ public class UdidlDeviceController {
|
|
|
|
|
|
|
|
|
|
@Autowired
|
|
|
|
|
DeviceSyncService deviceSyncService;
|
|
|
|
|
@Resource
|
|
|
|
|
ProductInfoService productInfoService;
|
|
|
|
|
|
|
|
|
|
@ApiOperation(value = "按日期段下载医疗器械信息")
|
|
|
|
|
@ApiImplicitParams({@ApiImplicitParam(name = "startDate", value = "开始时间", required = true, dataType = "Date"),
|
|
|
|
@ -90,6 +95,20 @@ public class UdidlDeviceController {
|
|
|
|
|
return deviceSyncService.downloadHistory(key);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
@ApiOperation(value = "下载最新版本数据", response = DeviceEntity.class)
|
|
|
|
|
@ApiImplicitParam(name = "deviceId", value = "医疗器械设备ID", required = true, dataType = "String")
|
|
|
|
|
@AuthRuleAnnotation("udidl/device/dlLastVersionByDi")
|
|
|
|
|
@GetMapping("udidl/device/dlLastVersionByDi")
|
|
|
|
|
public BaseResponse dlLastVersionByDi(String deviceId) {
|
|
|
|
|
BaseResponse baseResponse = deviceSyncService.downloadSingle(deviceId);
|
|
|
|
|
ProductInfoFilterRequest productInfoFilterRequest = new ProductInfoFilterRequest();
|
|
|
|
|
productInfoFilterRequest.setNameCode(deviceId);
|
|
|
|
|
return ResultVOUtils.success(productInfoService.findLastVersion(productInfoFilterRequest));
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* 下载医疗器械信息
|
|
|
|
|
*
|
|
|
|
@ -106,4 +125,6 @@ public class UdidlDeviceController {
|
|
|
|
|
deviceSyncService.downloadUdiData(deviceRequest);
|
|
|
|
|
return ResultVOUtils.success("后台已经开始下载");
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|