shjung 1 жил өмнө
parent
commit
c4b529f3fe

+ 1 - 0
src/main/java/com/its/op/ItsOpServerApplication.java

@@ -58,6 +58,7 @@ public class ItsOpServerApplication extends SpringBootServletInitializer
     }
 
     public static void main(String[] args) {
+        //log.error("LOGGING CLASS: {}", log.getClass());
         SpringApplication application = new SpringApplicationBuilder()
                 .sources(ItsOpServerApplication.class)
                 .listeners(new ApplicationPidFileWriter("./conf/" + applicationName + ".pid"))

+ 1 - 1
src/main/java/com/its/op/dao/mapper/its/scrs/ScTfvlStatisticsMapper.java

@@ -30,7 +30,7 @@ public interface ScTfvlStatisticsMapper {
     List<ScTfvlDto> findTfvlMN(@Param("cond") ScTfvlParam cond);
     List<ScTfvlDto> findTfvlMNLane(@Param("cond") ScTfvlParam cond);
 
-    List<ScIxrCmraTfvlDto> findIxtTfvlToday();
+    List<ScIxrCmraTfvlDto> findIxrTfvlToday();
 
     List<ScVhclTypeTfvlHsDto> findVhclTypeTfvl05M(@Param("cond") ScTfvlParam cond);
     List<ScVhclTypeTfvlHsDto> findVhclTypeTfvl05MLane(@Param("cond") ScTfvlParam cond);

+ 1 - 1
src/main/java/com/its/op/service/its/scrs/TbScIxrCmraMngmService.java

@@ -157,7 +157,7 @@ public class TbScIxrCmraMngmService {
 
         // 일 교통량 조회
         HashMap<String, ScIxrCmraTfvlDto> tfvlMap = new HashMap<>();
-        List<ScIxrCmraTfvlDto> tfvlList = this.tfvlMapper.findIxtTfvlToday();
+        List<ScIxrCmraTfvlDto> tfvlList = this.tfvlMapper.findIxrTfvlToday();
         tfvlList.forEach(tfvl -> {
             tfvlMap.put(tfvl.getCmraId(), tfvl);
         });

+ 1 - 1
src/main/resources/mybatis/mapper/its/scrs/ScTfvlStatisticsMapper.xml

@@ -795,7 +795,7 @@
         AND A.CLCT_DT BETWEEN #{cond.fromDt} AND #{cond.toDt}
     </select>
 
-    <select id="findIxtTfvlToday" resultType="com.its.op.dto.its.scrs.ScIxrCmraTfvlDto" fetchSize="1000">
+    <select id="findIxrTfvlToday" resultType="com.its.op.dto.its.scrs.ScIxrCmraTfvlDto" fetchSize="1000">
         SELECT T.IXR_ID AS ixrId,
                T.CMRA_ID AS cmraId,
                SUM(NVL(LRG_GO_TFVL, 0) +