You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
28 lines
1.5 KiB
28 lines
1.5 KiB
5 years ago
|
<?xml version="1.0" encoding="UTF-8"?>
|
||
|
<!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd">
|
||
|
|
||
|
<mapper namespace="com.daqing.financial.crms.dao.PersonalCustomerDao">
|
||
|
|
||
|
<!-- 可根据自己的需求,是否要使用 -->
|
||
|
<resultMap type="com.daqing.framework.domain.crms.PersonalCustomerEntity" id="personalCustomerMap">
|
||
|
<result property="id" column="id"/>
|
||
|
<result property="customerId" column="customer_id"/>
|
||
|
<result property="idCard" column="id_card"/>
|
||
|
<result property="age" column="age"/>
|
||
|
<result property="gender" column="gender"/>
|
||
|
<result property="maritalStatus" column="marital_status"/>
|
||
|
<result property="education" column="education"/>
|
||
|
<result property="employer" column="employer"/>
|
||
|
<result property="position" column="position"/>
|
||
|
<result property="workingYears" column="working_years"/>
|
||
|
<result property="socialSecurityNum" column="social_security_num"/>
|
||
|
<result property="livingSituation" column="living_situation"/>
|
||
|
<result property="residenceAddr" column="residence_addr"/>
|
||
|
<result property="businessSource" column="business_source"/>
|
||
|
<result property="emergencyLinkman" column="emergency_linkman"/>
|
||
|
<result property="emergencyLinkmanRelationship" column="emergency_linkman_relationship"/>
|
||
|
<result property="emergencyLinkmanPhone" column="emergency_linkman_phone"/>
|
||
|
</resultMap>
|
||
|
|
||
|
|
||
|
</mapper>
|