Newer
Older
casic-metering-biz-xichang / casic-metering-dao / src / main / resources / mapper / resource / BizResourceCustomerStaffMapper.xml
wangpeng on 16 Aug 2023 879 bytes 业务管理、任务计量管理
<?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.casic.missiles.mapper.resource.BizResourceCustomerStaffMapper">

    <!-- 通用查询映射结果 -->
    <resultMap id="BaseResultMap" type="com.casic.missiles.model.resource.BizResourceCustomerStaff">
        <id column="id" property="id" />
        <result column="customer_id" property="customerId" />
        <result column="staff_name" property="staffName" />
        <result column="dept_name" property="deptName" />
        <result column="staff_job" property="staffJob" />
        <result column="mobile" property="mobile" />
    </resultMap>

    <!-- 通用查询结果列 -->
    <sql id="Base_Column_List">
        id, customer_id, staff_name, dept_name, staff_job, mobile
    </sql>

</mapper>