代码备份

zhairh
anthonywj 1 year ago
parent 61a8006c10
commit 665380dad5

@ -68,41 +68,6 @@ public class DeviceSyncService {
return;
}
int insertCount = deviceSaveService.DeviceSave(result.getData(), DateUtil.parseDate(rangeValue), dlType);
//2.下载历史记录
// List<String> keyList = new ArrayList<String>();
// for (DataSetResult.DataSet ds : result.getData()) {
// List<DataSetResult.DeviceInfo> list = ds.getDeviceInfo();
// if (list != null && list.size() > 0) {
// for (DataSetResult.DeviceInfo deviceInfo : list)
// keyList.add(deviceInfo.getDeviceRecordKey());
// }
// }
// if (keyList.size() > 0) {
// DataSetTotalResult res = deviceDownloadService.getHistoryData2(keyList);
// if (res.getCode() == 1) {
// if (res.getData() != null && res.getData().size() > 0) {
// int count = result.getTotalRecordCount();
// count = count + res.getTotalRecordCount();
// result.setTotalRecordCount(count);
// List<DataSetResult.DataSet> data = result.getData();
// data.addAll(res.getData());
// result.setData(data);
// int hisInsertCount = deviceSaveService.DeviceSave(res.getData(), null, dlType);
// insertCount = insertCount + hisInsertCount;
// }
// } else {
// JobLog jobLog = new JobLog();
// jobLog.setDownloadType(downloadType);
// jobLog.setTaskType(Constant.JOB_TASK_TYPE_DOWNLOAD);
// jobLog.setDownloadDate(DateUtil.parseDate(rangeValue));
// jobLog.setType(Constant.LOG_TYPE_ERROR);
// jobLog.setMsg("下载历史记录出错:" + res.getMsg());
// jobLog.setCreateTime(new Date());
// jobLogService.insert(jobLog);
// }
//
// }
JobLog jobLog = new JobLog();
jobLog.setDownloadType(downloadType);
jobLog.setTaskType(Constant.JOB_TASK_TYPE_DOWNLOAD);
@ -219,20 +184,6 @@ public class DeviceSyncService {
return ResultVOUtils.success(productInfoEntityList);
}
// public void dlHistory(DataSetSingleResult result1) {
//
// DataSetSingleHistoryResult result = new DataSetSingleHistoryResult();
// result.setDataSet(result1.getDataSet());
// if (result1.getDataSet().getDeviceInfo() != null && result1.getDataSet().getDeviceInfo().size() > 0) {
// List<String> keyList = deviceDownloadService.getKeyList(result1.getDataSet());
// if (keyList.size() > 0) {
// DataSetTotalResult result2 = deviceDownloadService.getHistoryData(keyList);
// result.setDataList(result2.getData());
// }
// }
// }
public BaseResponse downloadByDi(String deviceId) {
DataSetSingleResult result1 = deviceDownloadService.downloadByDi(deviceId);
if (result1.getReturnCode() != 1)

@ -17,11 +17,11 @@ public class ProductClassifyServiceImpl implements ProductClassifyService {
ProductClassifyMapper productClassifyMapper;
@Override
public ProductClassify findByCode(String code, String qxlb) {
public ProductClassify findByCode(String code, String cplx) {
List<ProductClassify> productClassifyList = productClassifyMapper.selectList(new QueryWrapper<ProductClassify>().eq("code", code).eq("qxlb", qxlb));
List<ProductClassify> productClassifyList = productClassifyMapper.selectList(new QueryWrapper<ProductClassify>().eq("code", code).eq("qxlb", cplx));
if (CollUtil.isNotEmpty(productClassifyList)) {
productClassifyList.get(0);
return productClassifyList.get(0);
}
return new ProductClassify();

@ -1,44 +0,0 @@
package com.glxp.udidl.admin.thread;
import com.glxp.udidl.admin.dao.info.ScheduledMapper;
import com.glxp.udidl.admin.service.dataSync.DeviceSyncService;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import org.springframework.scheduling.annotation.EnableScheduling;
import org.springframework.scheduling.annotation.SchedulingConfigurer;
import org.springframework.scheduling.config.ScheduledTaskRegistrar;
import org.springframework.stereotype.Component;
import javax.annotation.Resource;
@Component
@EnableScheduling
public class DownloadTask2 implements SchedulingConfigurer {
final Logger logger = LoggerFactory.getLogger(DownloadTask.class);
@Resource
private ScheduledMapper scheduledDao;
@Resource
DeviceSyncService deviceSyncService;
@Override
public void configureTasks(ScheduledTaskRegistrar scheduledTaskRegistrar) {
/*scheduledTaskRegistrar.addTriggerTask(() -> process(),
triggerContext -> {
ScheduledRequest scheduledRequest = new ScheduledRequest();
scheduledRequest.setCronName("downloadUdi2");
ScheduledEntity scheduledEntity = scheduledDao.findScheduled(scheduledRequest);
String cron = scheduledEntity.getCron();//"0 55 5 * * ?";
if (cron.isEmpty()) {
logger.error("cron is null");
}
return new CronTrigger(cron).nextExecutionTime(triggerContext);
});*/
}
private void process() {
deviceSyncService.downloadUdi(1);
}
}

@ -98,8 +98,6 @@ public class UdiTransferUtils {
ProductClassify productClassifyEntity = productClassifyService.findByCode(productInfoEntity.getFlbm(), productInfoEntity.getCplx());
productInfoEntity.setCategoryName(productClassifyEntity.getName());
productInfoEntity.setVersionNumber(Integer.parseInt(deviceEntity.getVersionnumber()));
if (deviceEntity.getSydycpbs() != null && !deviceEntity.getSydycpbs().equals("")) {
productInfoEntity.setBhxjcpbm("");

Loading…
Cancel
Save