|
@@ -1,5 +1,6 @@
|
|
|
package com.zswl.cloud.springBtach.server.core.job.standard;
|
|
|
|
|
|
+import cn.hutool.core.util.IdUtil;
|
|
|
import cn.hutool.core.util.ObjectUtil;
|
|
|
import cn.hutool.json.JSONUtil;
|
|
|
import com.github.microservice.auth.client.content.ResultContent;
|
|
@@ -210,7 +211,7 @@ public class StandarOrderJob {
|
|
|
@Bean
|
|
|
public Job standardCreatOrder() {
|
|
|
return getJobBuilderFactory()
|
|
|
- .get("standardCreatOrder")
|
|
|
+ .get(IdUtil.fastSimpleUUID())
|
|
|
.start(checkFrom())
|
|
|
.next(platformOrder())
|
|
|
.incrementer(new RunIdIncrementer())
|