|
@@ -0,0 +1,30 @@
|
|
|
+<?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.gxzc.zen.api.sys.mapper.SysUserMapper">
|
|
|
+
|
|
|
+ <!-- 通用查询映射结果 -->
|
|
|
+ <resultMap id="BaseResultMap" type="com.gxzc.zen.api.sys.model.SysUser">
|
|
|
+ <result column="id" property="id" />
|
|
|
+ <result column="enable" property="enable" />
|
|
|
+ <result column="remark" property="remark" />
|
|
|
+ <result column="create_time" property="createTime" />
|
|
|
+ <result column="create_by" property="createBy" />
|
|
|
+ <result column="update_time" property="updateTime" />
|
|
|
+ <result column="update_by" property="updateBy" />
|
|
|
+ <result column="account" property="account" />
|
|
|
+ <result column="password" property="password" />
|
|
|
+ <result column="user_type" property="userType" />
|
|
|
+ <result column="user_name" property="userName" />
|
|
|
+ <result column="phone" property="phone" />
|
|
|
+ <result column="email" property="email" />
|
|
|
+ <result column="dept_id" property="deptId" />
|
|
|
+ <result column="position" property="position" />
|
|
|
+ <result column="address" property="address" />
|
|
|
+ <result column="staff_no" property="staffNo" />
|
|
|
+ <result column="ext_01" property="ext01" />
|
|
|
+ <result column="ext_02" property="ext02" />
|
|
|
+ <result column="ext_03" property="ext03" />
|
|
|
+ <result column="ext_04" property="ext04" />
|
|
|
+ </resultMap>
|
|
|
+
|
|
|
+</mapper>
|