SysUserDao.xml 853 Bytes
Newer Older
zzrdark committed
1 2 3 4 5 6 7 8 9 10
<?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.mx.cneeds.server.dao.SysUserDao">

	<!-- 可根据自己的需求,是否要使用 -->
    <resultMap type="com.mx.cneeds.server.entity.SysUserEntity" id="sysUserMap">
        <result property="userId" column="user_id"/>
        <result property="username" column="username"/>
        <result property="password" column="password"/>
11
        <result property="remark" column="remark"/>
zzrdark committed
12 13 14 15 16 17 18 19 20
        <result property="email" column="email"/>
        <result property="mobile" column="mobile"/>
        <result property="status" column="status"/>
        <result property="createTime" column="create_time"/>
        <result property="deptId" column="dept_id"/>
    </resultMap>


</mapper>