|
|
@ -231,6 +231,15 @@ public class SpsSyncExportStatusController {
|
|
|
|
@PostMapping("/spssync/basic/schedule/updateLastTime")
|
|
|
|
@PostMapping("/spssync/basic/schedule/updateLastTime")
|
|
|
|
@Log(title = "定时任务", businessType = BusinessType.UPDATE)
|
|
|
|
@Log(title = "定时任务", businessType = BusinessType.UPDATE)
|
|
|
|
public BaseResponse updateLastTime(@RequestBody BasicExportStatusTimeEntity basicExportStatusTimeEntity) {
|
|
|
|
public BaseResponse updateLastTime(@RequestBody BasicExportStatusTimeEntity basicExportStatusTimeEntity) {
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
if (basicExportStatusTimeEntity.getKey().equals("AutoDownloadOrder")) {
|
|
|
|
|
|
|
|
BasicExportStatusEntity basicExportStatusEntity = basicExportService.findLast("AutoUploadOrder");
|
|
|
|
|
|
|
|
if (basicExportStatusEntity != null) {
|
|
|
|
|
|
|
|
basicExportStatusTimeEntity.setLastUpdateTime(DateUtil.formatDateTime(basicExportStatusEntity.getStartTime()));
|
|
|
|
|
|
|
|
} else {
|
|
|
|
|
|
|
|
basicExportStatusTimeEntity.setLastUpdateTime(DateUtil.formatDateTime(new Date()));
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
} else
|
|
|
|
basicExportStatusTimeEntity.setLastUpdateTime(DateUtil.formatDateTime(new Date()));
|
|
|
|
basicExportStatusTimeEntity.setLastUpdateTime(DateUtil.formatDateTime(new Date()));
|
|
|
|
boolean b = basicExportTimeService.insertExportStatus(basicExportStatusTimeEntity);
|
|
|
|
boolean b = basicExportTimeService.insertExportStatus(basicExportStatusTimeEntity);
|
|
|
|
if (b)
|
|
|
|
if (b)
|
|
|
|