mirror of
https://github.com/PlayEdu/PlayEdu
synced 2025-06-26 15:02:44 +08:00
23 lines
1015 B
XML
23 lines
1015 B
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="xyz.playedu.api.mapper.DepartmentMapper">
|
|
|
|
<resultMap id="BaseResultMap" type="xyz.playedu.api.domain.Department">
|
|
<id property="id" column="id" jdbcType="INTEGER"/>
|
|
<result property="name" column="name" jdbcType="VARCHAR"/>
|
|
<result property="parentId" column="parent_id" jdbcType="INTEGER"/>
|
|
<result property="parentChain" column="parent_chain" jdbcType="VARCHAR"/>
|
|
<result property="sort" column="sort" jdbcType="INTEGER"/>
|
|
<result property="createdAt" column="created_at" jdbcType="TIMESTAMP"/>
|
|
<result property="updatedAt" column="updated_at" jdbcType="TIMESTAMP"/>
|
|
</resultMap>
|
|
|
|
<sql id="Base_Column_List">
|
|
id,name,parent_id,
|
|
parent_chain,sort,created_at,
|
|
updated_at
|
|
</sql>
|
|
</mapper>
|