Explorar el Código

sig-comm-server: updateIntType parameter param mistake update

hante hace 8 meses
padre
commit
54885b2e6e

+ 4 - 4
sig-comm-server/src/main/java/com/sig/comm/server/xnet/server/process/response/SigSignalMap.java

@@ -80,10 +80,10 @@ public class SigSignalMap implements SigCommResponse {
                 if (intDto != null) {
                     if (intDto.getIntLcType() != lcType || intDto.getIntLampType() != lampTp) {
                         HashMap<String, Object> intParam = new HashMap<>();
-                        intParam.put("REGION_CD",     regionCd);
-                        intParam.put("INT_NO",        intNo);
-                        intParam.put("INT_LCTYPE",    lcType);
-                        intParam.put("INT_LAMP-TYPE", lampTp);
+                        intParam.put("REGION_CD",    regionCd);
+                        intParam.put("INT_NO",       intNo);
+                        intParam.put("INT_LCTYPE",   lcType);
+                        intParam.put("INT_LAMPTYPE", lampTp);
                         typeLists.add(intParam);
                     }
                 }