|
@@ -4,6 +4,7 @@ import com.alibaba.fastjson.JSON;
|
|
|
import com.zfire.jiasm.syncdata.constant.TaskConfigEnum;
|
|
|
import com.zfire.jiasm.syncdata.data.Token;
|
|
|
import com.zfire.jiasm.syncdata.plus.entity.ItfMessagehuifangentity;
|
|
|
+import com.zfire.jiasm.syncdata.service.PublicService;
|
|
|
import com.zfire.jiasm.syncdata.service.SMSRepairFinishService;
|
|
|
import com.zfire.jiasm.syncdata.utils.OLDSystemUtil;
|
|
|
import com.zfire.jiasm.syncdata.utils.TokenCenter;
|
|
@@ -13,6 +14,7 @@ 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.Date;
|
|
|
import java.util.List;
|
|
@@ -31,15 +33,16 @@ public class SendGreeMessage {
|
|
|
private String repaireMessageFinishTopicName;
|
|
|
@Value("${wgmsgsendc}")
|
|
|
private String wgmsgsendc = "";
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
@Autowired
|
|
|
private TokenCenter tokenCenter;
|
|
|
@Autowired
|
|
|
private OLDSystemUtil oldSystemTask;
|
|
|
@Autowired
|
|
|
private SMSRepairFinishService smsRepairFinishService;
|
|
|
+ @Resource
|
|
|
+ PublicService publicService;
|
|
|
+
|
|
|
+
|
|
|
|
|
|
@Scheduled(fixedDelayString = "${wgmsgsend}")
|
|
|
public void process() throws Exception {
|
|
@@ -85,6 +88,7 @@ public class SendGreeMessage {
|
|
|
// log.info(name+"评价短信" + json);
|
|
|
oldSystemTask.sendMessage2Server(topic, json, token, key);
|
|
|
smsRepairFinishService.successUpdate(synTaskNo);
|
|
|
+ publicService.upSmsRecordSendTime(synTaskNo,(String)row.get("sjid"),new Date());
|
|
|
}
|
|
|
|
|
|
log.info("评价短信发送到总部结束: \uF0B7{}", sdf.format(new Date()));
|