|
|
|
@ -28,6 +28,7 @@ import com.glxp.api.service.sync.SpsSyncDownloadService;
|
|
|
|
|
import com.glxp.api.service.sync.SyncDataSetService;
|
|
|
|
|
import com.glxp.api.task.TaskExecutorConfig;
|
|
|
|
|
import com.glxp.api.util.CustomUtil;
|
|
|
|
|
import com.glxp.api.util.DateUtil;
|
|
|
|
|
import com.glxp.api.util.RedisUtil;
|
|
|
|
|
import lombok.RequiredArgsConstructor;
|
|
|
|
|
import org.springframework.scheduling.concurrent.ThreadPoolTaskExecutor;
|
|
|
|
@ -230,7 +231,7 @@ public class SpsSyncExportStatusController {
|
|
|
|
|
@PostMapping("/spssync/basic/schedule/updateLastTime")
|
|
|
|
|
@Log(title = "定时任务", businessType = BusinessType.UPDATE)
|
|
|
|
|
public BaseResponse updateLastTime(@RequestBody BasicExportStatusTimeEntity basicExportStatusTimeEntity) {
|
|
|
|
|
|
|
|
|
|
basicExportStatusTimeEntity.setLastUpdateTime(DateUtil.formatDateTime(new Date()));
|
|
|
|
|
boolean b = basicExportTimeService.insertExportStatus(basicExportStatusTimeEntity);
|
|
|
|
|
if (b)
|
|
|
|
|
return ResultVOUtils.success("更新成功!");
|
|
|
|
|