세외수입 사용자키 추가

main
mjkhan21 7 months ago
parent d22bef254b
commit 6f6968c6a8

@ -40,6 +40,8 @@ public class FimsUser extends GenericUser {
* *
*/ */
private String userSeCd; private String userSeCd;
/** 세외수입 사용자키 */
private String ntrisKey;
/** . /** .
@ -85,4 +87,18 @@ public class FimsUser extends GenericUser {
public void setUserSeCd(String userSeCd) { public void setUserSeCd(String userSeCd) {
this.userSeCd = userSeCd; this.userSeCd = userSeCd;
} }
/** .
* @return
*/
public String getNtrisKey() {
return ntrisKey;
}
/** .
* @param ntrisKey
*/
public void setNtrisKey(String ntrisKey) {
this.ntrisKey = ntrisKey;
}
} }

@ -24,6 +24,7 @@
<result property="deptCode" column="DEPT_CD"/> <result property="deptCode" column="DEPT_CD"/>
<result property="cntnSeCd" column="CNTN_SE_CD"/> <result property="cntnSeCd" column="CNTN_SE_CD"/>
<result property="userSeCd" column="USER_SE_CD"/> <result property="userSeCd" column="USER_SE_CD"/>
<result property="ntrisKey" column="NTRIS_KEY"/>
<result property="certificateDn" column="CRTFC_DN"/> <result property="certificateDn" column="CRTFC_DN"/>
<result property="locked" column="LOCK_YN"/> <result property="locked" column="LOCK_YN"/>
<result property="lockCount" column="LOCK_CNT"/> <result property="lockCount" column="LOCK_CNT"/>
@ -57,6 +58,7 @@ SELECT A.USER_ID
, A.POS_NM , A.POS_NM
, A.GRP_ID , A.GRP_ID
, A.CRTFC_DN , A.CRTFC_DN
, A.NTRIS_KEY
, A.LOCK_YN , A.LOCK_YN
, A.LOCK_CNT , A.LOCK_CNT
, A.LOCK_DT , A.LOCK_DT
@ -139,6 +141,7 @@ SELECT USER_ID
, DEPT_CD , DEPT_CD
, POS_NM , POS_NM
, CRTFC_DN , CRTFC_DN
, NTRIS_KEY
, LOCK_YN , LOCK_YN
, LOCK_CNT , LOCK_CNT
, LOCK_DT , LOCK_DT
@ -185,6 +188,7 @@ INSERT INTO TB_USER (
, POS_NM , POS_NM
, GRP_ID , GRP_ID
, CRTFC_DN , CRTFC_DN
, NTRIS_KEY
, LOCK_YN , LOCK_YN
, LOCK_CNT , LOCK_CNT
, LOCK_DT , LOCK_DT
@ -216,6 +220,7 @@ INSERT INTO TB_USER (
, #{positionName} , #{positionName}
, #{groupID} , #{groupID}
, #{certificateDn} , #{certificateDn}
, #{ntrisKey}
, 'N' , 'N'
, 0 , 0
, NULL , NULL
@ -247,6 +252,7 @@ UPDATE TB_USER
, NSTT_CD = #{institute} , NSTT_CD = #{institute}
, DEPT_CD = #{deptCode} , DEPT_CD = #{deptCode}
, CRTFC_DN = #{certificateDn} , CRTFC_DN = #{certificateDn}
, NTRIS_KEY = #{ntrisKey}
, STTS = #{status} , STTS = #{status}
<if test='"D" == status'>, USE_YN = 'N'</if> <if test='"D" == status'>, USE_YN = 'N'</if>
, MDFCN_DT =<include refid="utility.now" /> , MDFCN_DT =<include refid="utility.now" />

Loading…
Cancel
Save