forked from rongchao/epmet-cloud-rizhao
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.3 KiB
28 lines
1.3 KiB
6 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.epmet.dao.CustomerStaffDao">
|
||
|
|
||
|
<resultMap type="com.epmet.entity.CustomerStaffEntity" id="customerStaffMap">
|
||
|
<result property="id" column="ID"/>
|
||
|
<result property="userId" column="USER_ID"/>
|
||
|
<result property="realName" column="REAL_NAME"/>
|
||
|
<result property="gender" column="GENDER"/>
|
||
|
<result property="email" column="EMAIL"/>
|
||
|
<result property="mobile" column="MOBILE"/>
|
||
|
<result property="address" column="ADDRESS"/>
|
||
|
<result property="delFlag" column="DEL_FLAG"/>
|
||
|
<result property="revision" column="REVISION"/>
|
||
|
<result property="createdBy" column="CREATED_BY"/>
|
||
|
<result property="createdTime" column="CREATED_TIME"/>
|
||
|
<result property="updatedBy" column="UPDATED_BY"/>
|
||
|
<result property="updatedTime" column="UPDATED_TIME"/>
|
||
|
<result property="workType" column="WORK_TYPE"/>
|
||
|
<result property="headPhoto" column="HEAD_PHOTO"/>
|
||
|
<result property="activeFlag" column="ACTIVE_FLAG"/>
|
||
|
<result property="activeTime" column="ACTIVE_TIME"/>
|
||
|
<result property="enableFlag" column="ENABLE_FLAG"/>
|
||
|
</resultMap>
|
||
|
|
||
|
|
||
|
</mapper>
|