|
|
|
@ -126,8 +126,6 @@ public class JcjCjxxTask {
|
|
|
|
|
} catch (Exception e) {
|
|
|
|
|
logger.info(StringKit.getTrace(e));
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
private static String getFolderPath(String picpath) {
|
|
|
|
|
String floderPath;
|
|
|
|
@ -144,4 +142,32 @@ public class JcjCjxxTask {
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
*
|
|
|
|
|
* 功能描述: 接入出警信息实时数据
|
|
|
|
|
*
|
|
|
|
|
* @param:
|
|
|
|
|
* @return:
|
|
|
|
|
* @auther: cyfeng
|
|
|
|
|
* @date: 2023/12/2 14:31
|
|
|
|
|
*/
|
|
|
|
|
@Scheduled(initialDelay = 100, fixedDelay = 3000)
|
|
|
|
|
public void transcjxxNow() {
|
|
|
|
|
|
|
|
|
|
try {
|
|
|
|
|
|
|
|
|
|
//1 去mysql查出当前最大时间
|
|
|
|
|
|
|
|
|
|
//2 用得到的最大时间去oracle 查询大于这个时间的记录
|
|
|
|
|
|
|
|
|
|
//3 解析入库
|
|
|
|
|
|
|
|
|
|
}catch (Exception e){
|
|
|
|
|
e.printStackTrace();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|