|
@@ -1,13 +1,22 @@
|
|
|
package com.zfire.jiasm.syncdata.download.basedata;
|
|
|
|
|
|
+import com.alibaba.fastjson.JSON;
|
|
|
+import com.alibaba.fastjson.JSONArray;
|
|
|
+import com.zfire.jiasm.syncdata.constant.InterFaceTypeEnum;
|
|
|
import com.zfire.jiasm.syncdata.constant.TaskConfigEnum;
|
|
|
+import com.zfire.jiasm.syncdata.data.Token;
|
|
|
import com.zfire.jiasm.syncdata.service.GLPPGFWebsitWorkerService;
|
|
|
+import com.zfire.jiasm.syncdata.utils.HttpUtil;
|
|
|
+import com.zfire.jiasm.syncdata.utils.JSONResult;
|
|
|
+import com.zfire.jiasm.syncdata.utils.TokenCenter;
|
|
|
import lombok.extern.slf4j.Slf4j;
|
|
|
import org.springframework.beans.factory.annotation.Value;
|
|
|
import org.springframework.scheduling.annotation.Scheduled;
|
|
|
import org.springframework.stereotype.Component;
|
|
|
|
|
|
import javax.annotation.Resource;
|
|
|
+import java.text.SimpleDateFormat;
|
|
|
+import java.util.*;
|
|
|
|
|
|
/**
|
|
|
* 格力品牌广佛网点维修工基础资料下载(销售与售后网点维修工)
|
|
@@ -18,13 +27,19 @@ import javax.annotation.Resource;
|
|
|
@Slf4j
|
|
|
@Component
|
|
|
public class GLPPGFWebsitWorker {
|
|
|
+ @Value("${baseurl}")
|
|
|
+ private String baseurl = "";
|
|
|
@Value("${gfwwwc}")
|
|
|
private String gfwwwc = "";
|
|
|
+ @Value("${fsxwxgc}")
|
|
|
+ private String fsxwxgc = "";
|
|
|
+
|
|
|
+ @Resource
|
|
|
+ TokenCenter tokenCenter;
|
|
|
|
|
|
|
|
|
@Resource
|
|
|
GLPPGFWebsitWorkerService glppgfWebsitWorkerService;
|
|
|
-/*
|
|
|
|
|
|
// 网点维修工基础资料下载
|
|
|
@Scheduled(fixedDelayString = "${fsxwxg}")
|
|
@@ -81,7 +96,7 @@ public class GLPPGFWebsitWorker {
|
|
|
}
|
|
|
|
|
|
log.info("网点维修工基础资料信息处理完成: \uF0B7{}",sdf.format(new Date()));
|
|
|
- }*/
|
|
|
+ }
|
|
|
|
|
|
|
|
|
// 数据同步到本地表(worker:师傅信息表 + worker_brand_account:师傅网点对应品牌网点信息表 + websit_worker:网点师傅信息表)
|