|
|
@ -18,6 +18,7 @@ |
|
|
|
<result property="totalResi" column="totalResi"/> |
|
|
|
<result property="homeId" column="homeId"/> |
|
|
|
<result property="checkState" column="checkState"/> |
|
|
|
<result property="agencyId" column="agencyId"/> |
|
|
|
<result property="domicilePlace" column="domicilePlace"></result> |
|
|
|
<collection property="list" ofType="com.epmet.dto.result.CollectListResultDTO$CollectListMemberResultDTO" column="{id=id,domicilePlace=domicile_place}" select="selectMemberList"/> |
|
|
|
</resultMap> |
|
|
@ -30,6 +31,7 @@ |
|
|
|
c.TOTAL_RESI AS totalResi, |
|
|
|
c.HOME_ID as homeId, |
|
|
|
c.CHECK_STATE as checkState, |
|
|
|
c.AGENCY_ID as agencyId, |
|
|
|
#{domicilePlace} as domicile_place |
|
|
|
FROM ic_resi_collect c |
|
|
|
left join ic_resi_member m on(c.id=m.IC_RESI_COLLECT_ID and m.del_flag='0') |
|
|
|