<?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="org.springblade.modules.organ.mapper.OrganMapper">
|
|
<!-- 通用查询映射结果 -->
|
<resultMap id="organResultMap" type="org.springblade.modules.organ.entity.Organ">
|
<id column="id" property="id"/>
|
<result column="uid" property="uid"/>
|
<result column="organization" property="organization"/>
|
<result column="time" property="time"/>
|
<result column="
|
|
speed" property="
|
|
speed"/>
|
</resultMap>
|
|
|
<select id="selectOrganPage" resultMap="organResultMap">
|
select * from sys_organ where is_deleted = 0
|
</select>
|
|
</mapper>
|