离线数据上传入库

This commit is contained in:
guofeihu
2024-07-31 08:47:12 +08:00
parent 777abc0824
commit fde625de7e
7 changed files with 187 additions and 13 deletions

View File

@@ -56,12 +56,20 @@ public interface DataParam {
String wlRecordPath = "test/";
//中断标志
List<Integer> intrStr = Arrays.asList(0,26,40,54,68,82);
//暂降标志
List<Integer> dipStr = Arrays.asList(1,27,41,55,69,83);
//暂升标志
List<Integer> swlStr = Arrays.asList(13,36,50,64,78,92);
//中断标志及ele_epd_pqd表中中断事件ID、NAME
List<Short> intrStr = Arrays.asList((short)0,(short)26,(short)40,(short)54,(short)68,(short)82);
String intrStrId = "84aed85e7be48d59fcd59e1c8c8622ed";
String intrStrName = "Evt_Sys_IntrStr";
//暂降标志及ele_epd_pqd表中暂降事件ID
List<Short> dipStr = Arrays.asList((short)1,(short)27,(short)41,(short)55,(short)69,(short)83);
String dipStrId = "145c96b0e2d359f7c1c00312eeeacaec";
String dipStrName = "Evt_Sys_DipStr";
//暂升标志及ele_epd_pqd表中暂升事件ID
List<Short> swlStr = Arrays.asList((short)13,(short)36,(short)50,(short)64,(short)78,(short)92);
String swlStrId = "f9be85a431084a729748eee786ee1450";
String swlStrName = "Evt_Sys_SwlStr";
String wlRecordUpload = "Offline_Data_Upload";