invmonmapper.xml 2.36 KB
Newer Older
hulei committed
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 67 68 69 70 71 72 73 74 75 76 77
<?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.brilliance.isc.mda.dao.InvmonMapper">

    <resultMap id="BaseResultMap" type="com.brilliance.isc.bo.Invmon">
        <result column="INR" property="inr" jdbcType="VARCHAR"/>
        <result column="invnum" property="invnum" jdbcType="VARCHAR"/>
        <result column="invcod" property="invcod" jdbcType="VARCHAR"/>
        <result column="enddat" property="enddat" jdbcType="DATE"/>
        <result column="wylsh" property="wylsh" jdbcType="VARCHAR"/>
        <result column="ownref" property="ownref" jdbcType="VARCHAR"/>
    </resultMap>

    <sql id="Base_Column_List">
        inr,invnum,invcod,enddat,wylsh,ownref
    </sql>

    <insert id="insert">
        insert into invmon (<include refid="Base_Column_List" />)
        <trim prefix="values (" suffix=")" suffixOverrides=",">
            #{inr,jdbcType=VARCHAR},
            #{invnum,jdbcType=VARCHAR},
            #{invcod,jdbcType=VARCHAR},
            #{enddat,jdbcType=DATE},
            #{wylsh,jdbcType=VARCHAR},
            #{ownref,jdbcType=VARCHAR},
        </trim>
    </insert>

    <delete id="deleteByPrimaryKey">
        delete from invmon
        where inr = #{inr}
    </delete>

    <select id="selectByOwnref" resultMap="BaseResultMap">
        select
        <include refid="Base_Column_List"/>
        from invmon
        where ownref=#{ownref} order by inr desc
    </select>

    <update id="updateByPrimaryKey">
        update invmon
        <set>
            invnum=#{invnum},
            invcod=#{invcod},
            enddat=#{enddat},
            wylsh=#{wylsh},
            ownref=#{ownref},
        </set>
        where inr = #{inr}
    </update>

    <select id="selectByPrimaryKey" resultMap="BaseResultMap">
        select
        <include refid="Base_Column_List"/>
        from invmon
        where inr=#{inr}
    </select>

    <select id="selectByInvcodInvnumOwnref" resultMap="BaseResultMap">
        select
        <include refid="Base_Column_List"/>
        from invmon
        where invcod=#{invcod} and invnum=#{invnum} and ownref=#{ownref}
    </select>

    <select id="selectByWylsh" resultMap="BaseResultMap">
        select
        <include refid="Base_Column_List"/>
        from invmon
        where wylsh=#{wylsh}
    </select>

</mapper>