25 lines
1.1 KiB
XML
25 lines
1.1 KiB
XML
<?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.youlai.system.mapper.SysDeptMapper">
|
|
|
|
<resultMap id="BaseResultMap" type="com.youlai.system.pojo.entity.SysDept">
|
|
<id property="id" column="id" jdbcType="BIGINT"/>
|
|
<result property="name" column="name" jdbcType="VARCHAR"/>
|
|
<result property="parentId" column="parent_id" jdbcType="BIGINT"/>
|
|
<result property="treePath" column="tree_path" jdbcType="VARCHAR"/>
|
|
<result property="sort" column="sort" jdbcType="INTEGER"/>
|
|
<result property="status" column="status" jdbcType="TINYINT"/>
|
|
<result property="deleted" column="deleted" jdbcType="TINYINT"/>
|
|
<result property="createTime" column="create_time" jdbcType="TIMESTAMP"/>
|
|
<result property="updateTime" column="update_time" jdbcType="TIMESTAMP"/>
|
|
</resultMap>
|
|
|
|
<sql id="Base_Column_List">
|
|
id,name,parent_id,
|
|
tree_path,sort,status,
|
|
deleted,create_time,update_time
|
|
</sql>
|
|
</mapper>
|