xiangpei
2024-04-07 1d14ba39daf0422199c44b5b2ffc67d2364b2be2
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
<?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.ycl.platform.mapper.YwPeopleMapper">
 
    <!-- 通用查询映射结果 -->
    <resultMap id="BaseResultMap" type="YwPeopleVO">
        <result column="id" property="id" />
        <result column="yw_person_code" property="ywPersonCode" />
        <result column="yw_person_name" property="ywPersonName" />
        <result column="yw_person_account" property="ywPersonAccount" />
        <result column="belong_unit" property="belongUnit" />
        <result column="add_way" property="addWay" />
        <result column="phone" property="phone" />
    </resultMap>
 
</mapper>