오타 수정

main
이범준 5 months ago
parent c691e6b72c
commit 577001c3a1

@ -61,7 +61,7 @@ public class CfsScheduleCron {
mapOrg.put("sysTyCode", sysTyCode);
mapOrg.put("sysSttusCode", "2");
try {
commCollectServerService.insertServerStauts(mapOrg);
commCollectServerService.insertServerStatus(mapOrg);
} catch (Exception e) {
e.printStackTrace();
}

@ -9,7 +9,7 @@ import org.springframework.stereotype.Repository;
public interface CommCollectServerDao {
public int insertServerStauts(Map<String, String> param);
public int insertServerStatus(Map<String, String> param);
public List<Map<String, Object>> selectPreRegistCarInfoMstCount(Map<String, Object> param);

@ -2,7 +2,7 @@
<!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd">
<mapper namespace="cfs.trsmrcv.dao.CommCollectServerDao">
<insert id="insertServerStauts" parameterType="hashmap">
<insert id="insertServerStatus" parameterType="hashmap">
/* 서버 상태정보 추가 */
insert into DBUSER_ICS.TB_ICS_OPER_SYS_STTUS (
SYS_TY_CODE,

@ -7,7 +7,7 @@ public interface CommCollectServerService {
//dao
public int insertServerStauts(Map<String, String> param) throws Exception;
public int insertServerStatus(Map<String, String> param) throws Exception;
public List<Map<String, Object>> selectPreRegistCarInfoMstCount(Map<String, Object> param) throws Exception;

@ -39,8 +39,8 @@ public class CommCollectServerServiceImpl implements CommCollectServerService {
private CfsCommonService cfsCommonService;
@Override
public int insertServerStauts(Map<String, String> param) throws Exception {
return dao.insertServerStauts(param);
public int insertServerStatus(Map<String, String> param) throws Exception {
return dao.insertServerStatus(param);
}

@ -55,7 +55,7 @@ public class CommHealthCheckController {
mapOrg.put("sysTyCode", sysTyCode);
mapOrg.put("sysSttusCode", param.get("sysSttusCode"));
if(commCollectServerService.insertServerStauts(mapOrg) < 0) {
if(commCollectServerService.insertServerStatus(mapOrg) < 0) {
// 실패
result.setErrorMsg(null, null);
} else {

Loading…
Cancel
Save