first commit
This commit is contained in:
@@ -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.metalloop.modules.auth.mapper.SysUserMapper">
|
||||
<resultMap id="BaseResultMap" type="com.metalloop.modules.auth.model.po.SysUser">
|
||||
<!--@mbg.generated-->
|
||||
<!--@Table sys_user-->
|
||||
<id column="id" jdbcType="INTEGER" property="id"/>
|
||||
<result column="username" jdbcType="VARCHAR" property="username"/>
|
||||
<result column="password" jdbcType="VARCHAR" property="password"/>
|
||||
<result column="auth_status" jdbcType="TINYINT" property="authStatus"/>
|
||||
<result column="enterprise_id" jdbcType="INTEGER" property="enterpriseId"/>
|
||||
<result column="phone" jdbcType="VARCHAR" property="phone"/>
|
||||
<result column="email" jdbcType="VARCHAR" property="email"/>
|
||||
<result column="user_status" jdbcType="TINYINT" property="userStatus"/>
|
||||
<result column="reg_time" jdbcType="TIMESTAMP" property="regTime"/>
|
||||
</resultMap>
|
||||
<sql id="Base_Column_List">
|
||||
<!--@mbg.generated-->
|
||||
<!--@Table sys_user-->
|
||||
id,
|
||||
username,
|
||||
password,
|
||||
auth_status,
|
||||
enterprise_id,
|
||||
phone,
|
||||
email,
|
||||
user_status,
|
||||
reg_time
|
||||
</sql>
|
||||
</mapper>
|
||||
Reference in New Issue
Block a user