TxdUfohMapper.xml 944 字节
<?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.sunyo.wlpt.data.warehouse.mapper.TxdUfohMapper">
    <resultMap id="BaseResultMap" type="com.sunyo.wlpt.data.warehouse.domain.TxdUfoh">
        <!--@mbg.generated-->
        <!--@Table T_TXD_UFOH-->
        <result column="TOTALGROSSWEIGHTMEASURE" jdbcType="DECIMAL" property="totalGrossWeightMeasure"/>
        <result column="TCD_ID" jdbcType="VARCHAR" property="tcdId"/>
    </resultMap>
    <sql id="Base_Column_List">
        <!--@mbg.generated-->
        TOTALGROSSWEIGHTMEASURE, TCD_ID
    </sql>
    <select id="getTxdUfoInfo" parameterType="java.lang.String"
            resultMap="BaseResultMap">
        select
        <include refid="Base_Column_List"/>
        from T_TXD_UFOH
        where TCD_ID = #{waybillNoMaster,jdbcType=VARCHAR}

    </select>
</mapper>