my batis 관련 외부 키 조회

801 단어
my batis 관련 외부 키 조회
<resultMap id="get-lend-result" class="Lend">
        <result property="lid" column="LID" />
        <result property="luserid" column="LUSERID" />
        <result property="lmoney" column="LMONEY" />
        <result property="lwarrant_userid" column="LWARRANT_USERID"/>
        <association property="lendPerson"  column="LUSERID" select="selectUserByOid"></association>
<association property="warrantPerson"  column="LWARRANT_USERID" select="selectUserByOid"></association>
    </resultMap>

          :
private User lendPerson;
private User warrantPerson;

좋은 웹페이지 즐겨찾기