52 lines
2.2 KiB
XML
52 lines
2.2 KiB
XML
<?xml version="1.0" encoding="UTF-8"?><!--Converted at: Wed May 11 15:49:39 KST 2016-->
|
|
<!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
|
"http://mybatis.org/dtd/mybatis-3-mapper.dtd">
|
|
|
|
<mapper namespace="com.urpsys.kicinsa.dao.KicGroupwareDao">
|
|
|
|
<resultMap type="java.util.LinkedHashMap" id="viKicHrInterfaceUser">
|
|
<result property="userCode" column="USERCODE" />
|
|
<result property="userName" column="USERNAME" />
|
|
<result property="multiDisplayName" column="MULTIDISPLAYNAME" />
|
|
<result property="ChargeBusiness" column="CHARGEBUSINESS" />
|
|
<result property="mobile" column="MOBILE" />
|
|
<result property="mailAddress" column="MAILADDRESS" />
|
|
<result property="photePath" column="PHOTOPATH" />
|
|
<result property="retireDate" column="RETIREDATE" />
|
|
<result property="deptCode" column="DEPTCODE" />
|
|
<result property="deptName" column="DEPTNAME" />
|
|
<result property="multiDeptName" column="MULTIDEPTNAME" />
|
|
<result property="deptsoriKey" column="DEPTSORTKEY" />
|
|
<result property="jobPositionCode" column="JOBPOSITIONCODE" />
|
|
<result property="jobPositionName" column="JOBPOSITIONNAME" />
|
|
<result property="MultiJobPositionName" column="MULTIJOBPOSITIONNAME" />
|
|
<result property="isHr" column="ISHR" />
|
|
</resultMap>
|
|
|
|
<!-- 조건에 맞는 게시물 목록을 조회 한다. -->
|
|
<select id="getKicInsaList" resultMap="viKicHrInterfaceUser">
|
|
SELECT USERCODE
|
|
, USERNAME
|
|
, MULTIDISPLAYNAME
|
|
, CHARGEBUSINESS
|
|
, MOBILE
|
|
, MAILADDRESS
|
|
, PHOTOPATH
|
|
, RETIREDATE
|
|
, DEPTCODE
|
|
, DEPTNAME
|
|
, MULTIDEPTNAME
|
|
, DEPTSORTKEY
|
|
, JOBPOSITIONCODE
|
|
, JOBPOSITIONNAME
|
|
, MULTIJOBPOSITIONNAME
|
|
, ISHR
|
|
FROM V_GW_USERS
|
|
|
|
</select>
|
|
|
|
</mapper>
|
|
|
|
|
|
|
|
|