|
@@ -67,6 +67,27 @@ public class TbRseCtlrCnncHs implements Serializable {
|
|
|
dto.setRseNm(this.rse.getRseNm());
|
|
|
dto.setIstlLctnNm(this.rse.getIstlLctnNm());
|
|
|
}
|
|
|
+
|
|
|
+ if ("0".equals(dto.getLogType())) {
|
|
|
+ dto.setLogTypeDesc("접속");
|
|
|
+ }
|
|
|
+ else if ("1".equals(dto.getLogType())) {
|
|
|
+ dto.setLogTypeDesc("접속종료");
|
|
|
+ }
|
|
|
+ else if ("2".equals(dto.getLogType())) {
|
|
|
+ dto.setLogTypeDesc("ID 오류");
|
|
|
+ }
|
|
|
+ else if ("3".equals(dto.getLogType())) {
|
|
|
+ dto.setLogTypeDesc("기타");
|
|
|
+ }
|
|
|
+ else if ("4".equals(dto.getLogType())) {
|
|
|
+ dto.setLogTypeDesc("중복접속");
|
|
|
+ }
|
|
|
+ else {
|
|
|
+ dto.setLogTypeDesc("[" + dto.getLogType() + "] 알수없음");
|
|
|
+ }
|
|
|
+ dto.setLogType(dto.getLogTypeDesc());
|
|
|
+
|
|
|
return dto;
|
|
|
}
|
|
|
|