mirror of
https://github.com/PlayEdu/PlayEdu
synced 2025-06-26 15:02:44 +08:00
23 lines
986 B
XML
23 lines
986 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.AdminPermissionMapper">
|
|
|
|
<resultMap id="BaseResultMap" type="xyz.playedu.api.domain.AdminPermission">
|
|
<id property="id" column="id" jdbcType="INTEGER"/>
|
|
<result property="type" column="type" jdbcType="VARCHAR"/>
|
|
<result property="groupName" column="group_name" jdbcType="VARCHAR"/>
|
|
<result property="sort" column="sort" jdbcType="INTEGER"/>
|
|
<result property="name" column="name" jdbcType="VARCHAR"/>
|
|
<result property="slug" column="slug" jdbcType="VARCHAR"/>
|
|
<result property="createdAt" column="created_at" jdbcType="TIMESTAMP"/>
|
|
</resultMap>
|
|
|
|
<sql id="Base_Column_List">
|
|
id,type,group_name,
|
|
sort,name,slug,
|
|
created_at
|
|
</sql>
|
|
</mapper>
|