|
|
|
@ -1,13 +1,21 @@
|
|
|
|
|
package com.glxp.udidl.admin.controller.device;
|
|
|
|
|
|
|
|
|
|
import cn.hutool.core.util.StrUtil;
|
|
|
|
|
import cn.hutool.json.JSONUtil;
|
|
|
|
|
import com.glxp.udidl.admin.annotation.AuthRuleAnnotation;
|
|
|
|
|
import com.glxp.udidl.admin.constant.Constant;
|
|
|
|
|
import com.glxp.udidl.admin.entity.udid.DeviceEntity;
|
|
|
|
|
import com.glxp.udidl.admin.entity.udid.JobLog;
|
|
|
|
|
import com.glxp.udidl.admin.req.ProductInfoFilterRequest;
|
|
|
|
|
import com.glxp.udidl.admin.req.udid.DeviceRequest;
|
|
|
|
|
import com.glxp.udidl.admin.req.udid.JobRequest;
|
|
|
|
|
import com.glxp.udidl.admin.res.BaseResponse;
|
|
|
|
|
import com.glxp.udidl.admin.res.udid.DataSetSingleHistoryResult;
|
|
|
|
|
import com.glxp.udidl.admin.service.dataSync.DeviceDownloadService;
|
|
|
|
|
import com.glxp.udidl.admin.service.dataSync.DeviceSaveService;
|
|
|
|
|
import com.glxp.udidl.admin.service.dataSync.DeviceSyncService;
|
|
|
|
|
import com.glxp.udidl.admin.service.inout.ProductInfoService;
|
|
|
|
|
import com.glxp.udidl.admin.service.udi.JobLogService;
|
|
|
|
|
import com.glxp.udidl.admin.util.ResultVOUtils;
|
|
|
|
|
import io.swagger.annotations.Api;
|
|
|
|
|
import io.swagger.annotations.ApiImplicitParam;
|
|
|
|
@ -17,10 +25,7 @@ import org.slf4j.Logger;
|
|
|
|
|
import org.slf4j.LoggerFactory;
|
|
|
|
|
import org.springframework.beans.factory.annotation.Autowired;
|
|
|
|
|
import org.springframework.format.annotation.DateTimeFormat;
|
|
|
|
|
import org.springframework.web.bind.annotation.GetMapping;
|
|
|
|
|
import org.springframework.web.bind.annotation.PostMapping;
|
|
|
|
|
import org.springframework.web.bind.annotation.RequestBody;
|
|
|
|
|
import org.springframework.web.bind.annotation.RestController;
|
|
|
|
|
import org.springframework.web.bind.annotation.*;
|
|
|
|
|
|
|
|
|
|
import javax.annotation.Resource;
|
|
|
|
|
import java.util.Date;
|
|
|
|
@ -35,6 +40,10 @@ public class UdidlDeviceController {
|
|
|
|
|
DeviceSyncService deviceSyncService;
|
|
|
|
|
@Resource
|
|
|
|
|
ProductInfoService productInfoService;
|
|
|
|
|
@Resource
|
|
|
|
|
JobLogService jobLogService;
|
|
|
|
|
@Resource
|
|
|
|
|
DeviceDownloadService deviceDownloadService;
|
|
|
|
|
|
|
|
|
|
@ApiOperation(value = "按日期段下载医疗器械信息")
|
|
|
|
|
@ApiImplicitParams({@ApiImplicitParam(name = "startDate", value = "开始时间", required = true, dataType = "Date"),
|
|
|
|
@ -57,6 +66,37 @@ public class UdidlDeviceController {
|
|
|
|
|
return ResultVOUtils.success("后台已开始下载!");
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
@ApiOperation(value = "继续下载")
|
|
|
|
|
@ApiImplicitParam(name = "jobId", value = "任务ID", required = true, dataType = "String")
|
|
|
|
|
@AuthRuleAnnotation("udidl/device/goOnDlDi")
|
|
|
|
|
@GetMapping("udidl/device/goOnDlDi")
|
|
|
|
|
public BaseResponse goOnDlDi(JobRequest jobRequest) {
|
|
|
|
|
JobLog jobLog = jobLogService.findById(jobRequest.getJobId());
|
|
|
|
|
if (jobLog != null) {
|
|
|
|
|
if (StrUtil.isNotEmpty(jobLog.getLastUploadRequest())) {
|
|
|
|
|
DeviceRequest deviceRequest = JSONUtil.toBean(jobLog.getLastUploadRequest(), DeviceRequest.class);
|
|
|
|
|
if (deviceRequest != null) {
|
|
|
|
|
logger.info("继续上一次下载");
|
|
|
|
|
boolean b = deviceDownloadService.getDataAndSave(deviceRequest, jobLog);
|
|
|
|
|
if (b) {
|
|
|
|
|
jobLog.setStatus(1);
|
|
|
|
|
jobLog.setType(Constant.LOG_TYPE_SUCCESS);
|
|
|
|
|
jobLog.setUpdateTime(new Date());
|
|
|
|
|
jobLogService.update(jobLog);
|
|
|
|
|
} else {
|
|
|
|
|
jobLog.setStatus(1);
|
|
|
|
|
jobLog.setType(Constant.LOG_TYPE_ERROR);
|
|
|
|
|
jobLog.setUpdateTime(new Date());
|
|
|
|
|
jobLogService.update(jobLog);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
return ResultVOUtils.success("后台已开始下载!");
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
//todo 补全返回参数说明
|
|
|
|
|
@ApiOperation(value = "下载指定标识的设备信息", response = DataSetSingleHistoryResult.class)
|
|
|
|
|
@ApiImplicitParam(name = "deviceId", value = "设备ID", required = true, dataType = "String")
|
|
|
|
|