MedAear.xml 1.81 KB
  1
  2
  3
  4
  5
  6
  7
  8
  9
 10
 11
 12
 13
 14
 15
 16
 17
 18
 19
 20
 21
 22
 23
 24
 25
 26
 27
 28
 29
 30
 31
 32
 33
 34
 35
 36
 37
 38
 39
 40
 41
 42
 43
 44
 45
 46
 47
 48
 49
 50
 51
 52
 53
 54
 55
 56
 57
 58
 59
 60
 61
 62
 63
 64
 65
 66
<?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.lymsh.yimiao.main.data.dao.MedAreaMapper">

<resultMap id="MedAreaResultMap" type="com.lymsh.yimiao.main.data.model.MedArea">
<result column="a_id" property="aId" jdbcType="VARCHAR" />
<result column="a_name" property="aName" jdbcType="VARCHAR" />
<result column="a_parentId" property="aParentId" jdbcType="VARCHAR" />
<result column="a_isValid" property="aIsValid" jdbcType="VARCHAR" />
</resultMap>

<select id="getMedArea" resultMap="MedAreaResultMap" parameterType="java.lang.String">
select a_id,a_name,a_parentId,a_isValid
FROM med_area
WHERE a_id = #{aId,jdbcType=VARCHAR}
</select>


<sql id="orderAndLimit">
<if test="sort != null and sort != '' ">
order by ${sort}
<if test="need != null">
limit #{offset, jdbcType=INTEGER} , #{limit, jdbcType=INTEGER}
</if>
</if>
</sql>



<sql id="MedAreaCondition">
<where>
1 = 1
<if test="aId != null and aId != ''">
and a_id = #{aId,jdbcType=VARCHAR}
</if>
<if test="aName != null and aName != ''">
and a_name = #{aName,jdbcType=VARCHAR}
</if>
<if test="aParentid != null and aParentid != ''">
and a_parentId = #{aParentid,jdbcType=VARCHAR}
</if>
<if test="aIsvalid != null and aIsvalid != ''">
and a_isValid = #{aIsvalid,jdbcType=VARCHAR}
</if>
</where>
</sql>



<select id="queryMedArea" resultMap="MedAreaResultMap" parameterType="com.lymsh.yimiao.main.data.model.MedAreaQuery">
select a_id,a_name,a_parentId,a_isValid
from med_area
<include refid="MedAreaCondition" />
<include refid="orderAndLimit" />
</select>



<select id="queryMedAreaCount" resultType="int" parameterType="com.lymsh.yimiao.main.data.model.MedAreaQuery">
select count(1) from med_area
<include refid="MedAreaCondition" />
</select>



</mapper>