Index: base3.10/src/main/java/egovframework/com/site/service/SystemVO.java
===================================================================
--- base3.10/src/main/java/egovframework/com/site/service/SystemVO.java (revision 84)
+++ base3.10/src/main/java/egovframework/com/site/service/SystemVO.java (revision 85)
@@ -4,31 +4,34 @@
@SuppressWarnings("serial")
public class SystemVO implements Serializable {
-
+
//시스템ID
private Integer sysId;
-
+
//시스템명
private String sysNm;
-
+
+ //시스템 설명
+ private String sysDc;
+
//로고
private String coLogo;
-
+
//주소
private String coAddr;
-
+
//전화번호
private String coTel;
-
+
//팩스
private String coFax;
-
+
//저작권
private String copyright;
-
+
//favicon
private String coFavicon;
-
+
//점검 여부
private String inspectAt;
@@ -103,5 +106,13 @@
public void setInspectAt(String inspectAt) {
this.inspectAt = inspectAt;
}
-
+
+ public String getSysDc() {
+ return sysDc;
+ }
+
+ public void setSysDc(String sysDc) {
+ this.sysDc = sysDc;
+ }
+
}
Index: base3.10/src/main/resources/egovframework/mapper/com/site/SystemManage_SQL_postgres.xml
===================================================================
--- base3.10/src/main/resources/egovframework/mapper/com/site/SystemManage_SQL_postgres.xml (revision 84)
+++ base3.10/src/main/resources/egovframework/mapper/com/site/SystemManage_SQL_postgres.xml (revision 85)
@@ -10,6 +10,7 @@
<resultMap id="systemMap" type="SystemVO">
<id property="sysId" column="SYS_ID"/>
<result property="sysNm" column="SYS_NM"/>
+ <result property="sysDc" column="SYS_DC"/>
<result property="coLogo" column="CO_LOGO"/>
<result property="coAddr" column="CO_ADDR"/>
<result property="coTel" column="CO_TEL"/>
@@ -24,6 +25,7 @@
INSERT INTO COMTNSYSTEMINFO (
SYS_ID,
SYS_NM,
+ SYS_DC,
CO_LOGO,
CO_ADDR,
CO_TEL,
@@ -34,6 +36,7 @@
) VALUES (
#{sysId},
#{sysNm},
+ #{sysDc},
#{coLogo},
#{coAddr},
#{coTel},
@@ -49,6 +52,7 @@
SELECT
SYS_ID,
SYS_NM,
+ SYS_DC,
fnconvertfileid(CO_LOGO) AS CO_LOGO,
CO_ADDR,
CO_TEL,
@@ -66,6 +70,7 @@
<update id="updateSystemInfo" parameterType="SystemVO">
UPDATE COMTNSYSTEMINFO SET
SYS_NM = #{sysNm},
+ SYS_DC = #{sysDc},
CO_LOGO = #{coLogo},
CO_ADDR = #{coAddr},
CO_TEL = #{coTel},
Index: base3.10/src/main/webapp/WEB-INF/jsp/egovframework/com/site/SystemManage.jsp
===================================================================
--- base3.10/src/main/webapp/WEB-INF/jsp/egovframework/com/site/SystemManage.jsp (revision 84)
+++ base3.10/src/main/webapp/WEB-INF/jsp/egovframework/com/site/SystemManage.jsp (revision 85)
@@ -189,6 +189,10 @@
<td><input name="sysNm" type="text" title="<spring:message code='com.system.title.sysNm' /> <spring:message code='input.input' />" class="inputText width100p" placeholder="${sysNmPlaceHolder }" value="${sysVO.sysNm}" /></td>
</tr>
<tr>
+ <th scope="row">시스템 설명</th>
+ <td><textarea id="sysDc" name="sysDc" class="textArea width100p" title="시스템 설명 <spring:message code='input.input' />" rows="20" cols="300" placeholder="시스템 설명을 입력하세요">${sysVO.sysDc}</textarea></td>
+ </tr>
+ <tr>
<th scope="row"><spring:message code='com.system.title.coLogo' /></th>
<td>
<!-- attached file Start -->
Delete comment
Once you delete this comment, you won't be able to recover it. Are you sure you want to delete this comment?