<?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.hd.mapper.HdMapper">
|
|
<!-- 通用查询映射结果 -->
|
<resultMap id="hdResultMap" type="org.springblade.modules.hd.entity.Hd">
|
<id column="id" property="id"/>
|
<result column="hdname" property="hdname"/>
|
<result column="address" property="address"/>
|
<result column="time" property="time"/>
|
<result column="tpurl" property="tpurl"/>
|
<result column="context" property="context"/>
|
<result column="lx" property="lx"/>
|
</resultMap>
|
|
|
<select id="selectHdPage" resultMap="hdResultMap">
|
select * from sys_hd where is_deleted = 0
|
</select>
|
|
<select id="selectInList" resultType="java.util.HashMap">
|
select id,hdname from sys_hd
|
</select>
|
|
</mapper>
|