|
|
@@ -0,0 +1,27 @@
|
|
|
+<?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.middle.platform.system.biz.mapper.SysUserMapper">
|
|
|
+ <resultMap id="BaseResultMap" type="com.middle.platform.system.biz.entity.SysUser">
|
|
|
+ <!--@mbg.generated-->
|
|
|
+ <!--@Table sys_user-->
|
|
|
+ <id column="id" jdbcType="BIGINT" property="id" />
|
|
|
+ <result column="name" jdbcType="VARCHAR" property="name" />
|
|
|
+ <result column="sex" jdbcType="TINYINT" property="sex" />
|
|
|
+ <result column="phone" jdbcType="VARCHAR" property="phone" />
|
|
|
+ <result column="username" jdbcType="VARCHAR" property="username" />
|
|
|
+ <result column="password" jdbcType="VARCHAR" property="password" />
|
|
|
+ <result column="status" jdbcType="TINYINT" property="status" />
|
|
|
+ <result column="remark" jdbcType="VARCHAR" property="remark" />
|
|
|
+ <result column="create_by" jdbcType="BIGINT" property="createBy" />
|
|
|
+ <result column="create_time" jdbcType="TIMESTAMP" property="createTime" />
|
|
|
+ <result column="update_by" jdbcType="BIGINT" property="updateBy" />
|
|
|
+ <result column="update_time" jdbcType="TIMESTAMP" property="updateTime" />
|
|
|
+ <result column="delete_time" jdbcType="TIMESTAMP" property="deleteTime" />
|
|
|
+ <result column="del_flag" jdbcType="TINYINT" property="delFlag" />
|
|
|
+ </resultMap>
|
|
|
+ <sql id="Base_Column_List">
|
|
|
+ <!--@mbg.generated-->
|
|
|
+ id, `name`, sex, phone, username, `password`, `status`, remark, create_by, create_time,
|
|
|
+ update_by, update_time, delete_time, del_flag
|
|
|
+ </sql>
|
|
|
+</mapper>
|