zxl
2025-11-21 97b1e0d4820606bef726f60e459b66afb1e8eab1
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>