123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227 |
- <?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.jkcredit.invoice.mapper.waybill.NoCarWaybillImprtMapper">
- <!-- 通用查询映射结果 -->
- <resultMap id="BaseResultMap" type="com.jkcredit.invoice.model.entity.waybill.NoCarWayBill">
- <id column="id" property="id"/>
- <result column="customerName" property="customerName"/>
- <result column="companyName" property="companyName"/>
- <result column="billNum" property="billNum"/>
- <result column="plateNum" property="plateNum"/>
- <result column="plateColor" property="plateColor"/>
- <result column="startTime" property="startTime"/>
- <result column="sourceAddr" property="sourceAddr"/>
- <result column="destAddr" property="destAddr"/>
- <result column="predictEndTime" property="predictEndTime"/>
- <result column="fee" property="fee"/>
- <result column="hisFlag" property="hisFlag"></result>
- <result column="billwayStatus" property="billwayStatus"></result>
- <result column="titleType" property="titleType"/>
- <result column="taxplayerCode" property="taxplayerCode"/>
- <result column="intfaceStartTime" property="intfaceStartTime"/>
- <result column="interfaceEndTime" property="interfaceEndTime"/>
- <result column="companyAdress" property="companyAdress"/>
- <result column="companyBank" property="companyBank"/>
- <result column="companyBankAcc" property="companyBankAcc"/>
- <result column="companyTel" property="companyTel"/>
- <result column="updateTime" property="updateTime"/>
- <result column="failReason" property="failReason"/>
- </resultMap>
- <sql id="baseSql">
- id,
- customerName,
- companyName,
- billNum,
- plateNum,
- plateColor,
- startTime,
- sourceAddr,
- destAddr,
- predictEndTime,
- fee,
- titleType,
- taxplayerCode,
- intfaceStartTime,
- interfaceEndTime,
- billwayStatus,
- hisFlag,
- companyAdress,
- companyBank,
- companyBankAcc,
- companyTel,companyNum,updateTime,failReason
- </sql>
- <select id="selectAllByPage" resultMap="BaseResultMap">
- select
- <include refid="baseSql" />
- from t_waybill_Import
- <where>
- <if test="noCarWayBill.companyName != null and noCarWayBill.companyName != ''">
- and companyName LIKE CONCAT('%',#{noCarWayBill.companyName},'%')
- </if>
- <if test="noCarWayBill.billNum != null and noCarWayBill.billNum != ''">
- and billNum = #{noCarWayBill.billNum}
- </if>
- <if test="noCarWayBill.plateNum != null and noCarWayBill.plateNum != ''">
- and plateNum = #{noCarWayBill.plateNum}
- </if>
- <if test="noCarWayBill.taxplayerCode != null and noCarWayBill.taxplayerCode != ''">
- and taxplayerCode = #{noCarWayBill.taxplayerCode}
- </if>
- <if test="noCarWayBill.billwayStatus != null and noCarWayBill.billwayStatus != ''">
- and billwayStatus = #{noCarWayBill.billwayStatus}
- </if>
- <if test="noCarWayBill.startBegin != null and noCarWayBill.startBegin != ''">
- and intfaceStartTime BETWEEN #{noCarWayBill.startBegin} and #{noCarWayBill.startEnd}
- </if>
- <if test="noCarWayBill.endBegin != null and noCarWayBill.endBegin != ''">
- and interfaceEndTime BETWEEN #{noCarWayBill.endBegin} and #{noCarWayBill.endEnd}
- </if>
- <if test="noCarWayBill.batchNum != null and noCarWayBill.batchNum != ''">
- and batchNumber = #{noCarWayBill.batchNum}
- </if>
- <if test="noCarWayBill.batchNumEnd != null and noCarWayBill.batchNumEnd != ''">
- and batchNumEnd = #{noCarWayBill.batchNumEnd}
- </if>
- <if test="noCarWayBill.success == 1">
- and billwayStatus in(1,2,3,4)
- </if>
- <if test="noCarWayBill.success == 2">
- and billwayStatus in(-1,-2,-3)
- </if>
- </where>
- </select>
- <select id="selectAllByPageException" resultMap="BaseResultMap">
- select
- <include refid="baseSql" />
- from t_waybill_Import
- <where>
- <if test="noCarWayBill.companyName != null and noCarWayBill.companyName != ''">
- and companyName LIKE CONCAT('%',#{noCarWayBill.companyName},'%')
- </if>
- <if test="noCarWayBill.billNum != null and noCarWayBill.billNum != ''">
- and billNum = #{noCarWayBill.billNum}
- </if>
- <if test="noCarWayBill.taxplayerCode != null and noCarWayBill.taxplayerCode != ''">
- and taxplayerCode = #{noCarWayBill.taxplayerCode}
- </if>
- <if test="noCarWayBill.startBegin != null and noCarWayBill.startBegin != ''">
- and intfaceStartTime BETWEEN #{noCarWayBill.startBegin} and #{noCarWayBill.startEnd}
- </if>
- <if test="noCarWayBill.endBegin != null and noCarWayBill.endBegin != ''">
- and interfaceEndTime BETWEEN #{noCarWayBill.endBegin} and #{noCarWayBill.endEnd}
- </if>
- and billwayStatus =4
- </where>
- </select>
- <insert id="insertImport" parameterType="com.jkcredit.invoice.model.entity.waybill.NoCarWayBill" >
- insert into t_waybill_Import (
- customerName,
- companyName,
- billNum,
- plateNum,
- plateColor,
- startTime,
- sourceAddr,
- destAddr,
- predictEndTime,
- fee,
- titleType,
- taxplayerCode,
- intfaceStartTime,
- interfaceEndTime,
- billwayStatus,
- hisFlag,
- companyAdress,
- companyBank,
- companyBankAcc,
- companyTel,companyNum,updateTime,batchNumber,batchNumEnd,failReason
- )
- values ( #{customerName,jdbcType=VARCHAR}, #{companyName,jdbcType=VARCHAR},
- #{billNum,jdbcType=VARCHAR}, #{plateNum,jdbcType=VARCHAR}, #{plateColor,jdbcType=VARCHAR},
- #{startTime,jdbcType=VARCHAR}, #{sourceAddr,jdbcType=VARCHAR}, #{destAddr,jdbcType=VARCHAR},
- #{predictEndTime,jdbcType=VARCHAR}, #{fee,jdbcType=INTEGER}, #{titleType,jdbcType=INTEGER},
- #{taxplayerCode,jdbcType=VARCHAR},#{intfaceStartTime,jdbcType=VARCHAR},#{interfaceEndTime,jdbcType=VARCHAR},
- #{billwayStatus,jdbcType=INTEGER},#{hisFlag,jdbcType=INTEGER}, #{companyAdress,jdbcType=VARCHAR}, #{companyBank,jdbcType=VARCHAR}
- , #{companyBankAcc,jdbcType=VARCHAR}, #{companyTel,jdbcType=VARCHAR},#{companyNum,jdbcType=VARCHAR},#{updateTime,jdbcType=VARCHAR},#{batchNum,jdbcType=VARCHAR},#{batchNumEnd,jdbcType=VARCHAR},#{failReason,jdbcType=VARCHAR}
- )
- </insert>
- <update id="updateByPrimaryKey" parameterType="com.jkcredit.invoice.model.entity.waybill.NoCarWayBill" >
- update t_waybill_Import
- set customerName = #{customerName,jdbcType=VARCHAR},
- companyName = #{companyName,jdbcType=VARCHAR},
- billNum = #{billNum,jdbcType=VARCHAR},
- plateNum = #{plateNum,jdbcType=VARCHAR},
- plateColor = #{plateColor,jdbcType=VARCHAR},
- startTime = #{startTime,jdbcType=VARCHAR},
- sourceAddr = #{sourceAddr,jdbcType=VARCHAR},
- destAddr = #{destAddr,jdbcType=VARCHAR},
- predictEndTime = #{predictEndTime,jdbcType=VARCHAR},
- fee = #{fee,jdbcType=INTEGER},
- titleType = #{titleType,jdbcType=INTEGER},
- taxplayerCode = #{taxplayerCode,jdbcType=VARCHAR},
- intfaceStartTime = #{intfaceStartTime,jdbcType=VARCHAR},
- interfaceEndTime = #{interfaceEndTime,jdbcType=VARCHAR},
- billwayStatus = #{billwayStatus,jdbcType=INTEGER},
- hisFlag = #{hisFlag,jdbcType=INTEGER},
- companyAdress = #{companyAdress,jdbcType=VARCHAR},
- companyBank = #{companyBank,jdbcType=VARCHAR},
- companyBankAcc = #{companyBankAcc,jdbcType=VARCHAR},
- companyTel = #{companyTel,jdbcType=VARCHAR},
- companyNum = #{companyNum,jdbcType=VARCHAR},
- failReason = #{failReason,jdbcType=VARCHAR}
- where id = #{id,jdbcType=INTEGER}
- </update>
- <update id="updateByBillNum" parameterType="com.jkcredit.invoice.model.entity.waybill.NoCarWayBill" >
- update t_waybill_Import
- set customerName = #{customerName,jdbcType=VARCHAR},
- companyName = #{companyName,jdbcType=VARCHAR},
- billNum = #{billNum,jdbcType=VARCHAR},
- plateNum = #{plateNum,jdbcType=VARCHAR},
- plateColor = #{plateColor,jdbcType=VARCHAR},
- startTime = #{startTime,jdbcType=VARCHAR},
- sourceAddr = #{sourceAddr,jdbcType=VARCHAR},
- destAddr = #{destAddr,jdbcType=VARCHAR},
- predictEndTime = #{predictEndTime,jdbcType=VARCHAR},
- fee = #{fee,jdbcType=INTEGER},
- titleType = #{titleType,jdbcType=INTEGER},
- taxplayerCode = #{taxplayerCode,jdbcType=VARCHAR},
- intfaceStartTime = #{intfaceStartTime,jdbcType=VARCHAR},
- interfaceEndTime = #{interfaceEndTime,jdbcType=VARCHAR},
- billwayStatus = #{billwayStatus,jdbcType=INTEGER},
- hisFlag = #{hisFlag,jdbcType=INTEGER},
- companyAdress = #{companyAdress,jdbcType=VARCHAR},
- companyBank = #{companyBank,jdbcType=VARCHAR},
- companyBankAcc = #{companyBankAcc,jdbcType=VARCHAR},
- companyTel = #{companyTel,jdbcType=VARCHAR},
- companyNum = #{companyNum,jdbcType=VARCHAR},
- failReason = #{failReason,jdbcType=VARCHAR}
- where billNum = #{billNum,jdbcType=VARCHAR} and batchNumber = #{batchNum,jdbcType=VARCHAR}
- </update>
- <select id="selectByBillNum" resultMap="BaseResultMap" parameterType="java.lang.String" >
- select
- <include refid="baseSql" />
- from t_waybill_Import
- where billNum = #{billNum,jdbcType=VARCHAR}
- </select>
- <select id="selectByHisFlagAndBillStatus" resultMap="BaseResultMap" parameterType="com.jkcredit.invoice.model.entity.waybill.NoCarWayBill" >
- select
- <include refid="baseSql" />
- from t_waybill_Import
- where hisFlag = #{hisFlag,jdbcType=INTEGER} and billwayStatus = #{billwayStatus,jdbcType=INTEGER}
- </select>
- <select id="getNoCarNoVoiceQuery" resultMap="BaseResultMap" parameterType="java.lang.String" >
- select
- <include refid="baseSql" />
- from t_waybill_Import
- where customerName = #{customerName,jdbcType=VARCHAR}
- </select>
- </mapper>
|