zjh
1 天以前 14ecea8537d5b29ca64c75aad4ff49265018415d
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
<?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.ltkj.hosp.mapper.LtkjJianchajianyanTreeMapper">
 
    <resultMap id="BaseResultMap" type="com.ltkj.hosp.domain.LtkjJianchajianyanTree">
            <id property="id" column="id" jdbcType="INTEGER"/>
            <result property="hisXmdm" column="his_xmdm" jdbcType="VARCHAR"/>
            <result property="cardId" column="card_id" jdbcType="VARCHAR"/>
            <result property="sqdh" column="sqdh" jdbcType="VARCHAR"/>
            <result property="tjPrice" column="tj_price" jdbcType="VARCHAR"/>
            <result property="fyhj" column="fyhj" jdbcType="VARCHAR"/>
            <result property="xmfl" column="xmfl" jdbcType="VARCHAR"/>
            <result property="type" column="type" jdbcType="VARCHAR"/>
            <result property="pationid" column="pationId" jdbcType="VARCHAR"/>
            <result property="service" column="service" jdbcType="VARCHAR"/>
    </resultMap>
 
    <sql id="Base_Column_List">
        id,his_xmdm,card_id,
        sqdh,tj_price,fyhj,
        xmfl,type,pationId,service
    </sql>
 
 
    <select id="getCallSfsfByCardId" parameterType="java.util.Map"  statementType="CALLABLE">
        {call getSfsfByCardId(
                #{cardId,mode=IN,jdbcType=VARCHAR},
                #{sl,mode=OUT,jdbcType=INTEGER}
              )}
    </select>
</mapper>