NoCarWaybillImportMapper.xml 11 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd">
  3. <mapper namespace="com.jkcredit.invoice.mapper.waybill.NoCarWaybillImprtMapper">
  4. <!-- 通用查询映射结果 -->
  5. <resultMap id="BaseResultMap" type="com.jkcredit.invoice.model.entity.waybill.NoCarWayBill">
  6. <id column="id" property="id"/>
  7. <result column="customerName" property="customerName"/>
  8. <result column="companyName" property="companyName"/>
  9. <result column="billNum" property="billNum"/>
  10. <result column="plateNum" property="plateNum"/>
  11. <result column="plateColor" property="plateColor"/>
  12. <result column="startTime" property="startTime"/>
  13. <result column="sourceAddr" property="sourceAddr"/>
  14. <result column="destAddr" property="destAddr"/>
  15. <result column="predictEndTime" property="predictEndTime"/>
  16. <result column="fee" property="fee"/>
  17. <result column="hisFlag" property="hisFlag"></result>
  18. <result column="billwayStatus" property="billwayStatus"></result>
  19. <result column="titleType" property="titleType"/>
  20. <result column="taxplayerCode" property="taxplayerCode"/>
  21. <result column="intfaceStartTime" property="intfaceStartTime"/>
  22. <result column="interfaceEndTime" property="interfaceEndTime"/>
  23. <result column="companyAdress" property="companyAdress"/>
  24. <result column="companyBank" property="companyBank"/>
  25. <result column="companyBankAcc" property="companyBankAcc"/>
  26. <result column="companyTel" property="companyTel"/>
  27. <result column="updateTime" property="updateTime"/>
  28. <result column="failReason" property="failReason"/>
  29. </resultMap>
  30. <sql id="baseSql">
  31. id,
  32. customerName,
  33. companyName,
  34. billNum,
  35. plateNum,
  36. plateColor,
  37. startTime,
  38. sourceAddr,
  39. destAddr,
  40. predictEndTime,
  41. fee,
  42. titleType,
  43. taxplayerCode,
  44. intfaceStartTime,
  45. interfaceEndTime,
  46. billwayStatus,
  47. hisFlag,
  48. companyAdress,
  49. companyBank,
  50. companyBankAcc,
  51. companyTel,companyNum,updateTime,failReason
  52. </sql>
  53. <select id="selectAllByPage" resultMap="BaseResultMap">
  54. select
  55. <include refid="baseSql" />
  56. from t_waybill_Import
  57. <where>
  58. <if test="noCarWayBill.companyName != null and noCarWayBill.companyName != ''">
  59. and companyName = BINARY #{noCarWayBill.companyName}
  60. </if>
  61. <if test="noCarWayBill.billNum != null and noCarWayBill.billNum != ''">
  62. and billNum = BINARY #{noCarWayBill.billNum}
  63. </if>
  64. <if test="noCarWayBill.plateNum != null and noCarWayBill.plateNum != ''">
  65. and plateNum = BINARY #{noCarWayBill.plateNum}
  66. </if>
  67. <if test="noCarWayBill.taxplayerCode != null and noCarWayBill.taxplayerCode != ''">
  68. and taxplayerCode = BINARY #{noCarWayBill.taxplayerCode}
  69. </if>
  70. <if test="noCarWayBill.billwayStatus != null and noCarWayBill.billwayStatus != ''">
  71. and billwayStatus = BINARY #{noCarWayBill.billwayStatus}
  72. </if>
  73. <if test="noCarWayBill.startBegin != null and noCarWayBill.startBegin != ''">
  74. and intfaceStartTime BETWEEN #{noCarWayBill.startBegin} and #{noCarWayBill.startEnd}
  75. </if>
  76. <if test="noCarWayBill.endBegin != null and noCarWayBill.endBegin != ''">
  77. and interfaceEndTime BETWEEN #{noCarWayBill.endBegin} and #{noCarWayBill.endEnd}
  78. </if>
  79. <if test="noCarWayBill.batchNum != null and noCarWayBill.batchNum != ''">
  80. and batchNumber = BINARY #{noCarWayBill.batchNum}
  81. </if>
  82. <if test="noCarWayBill.batchNumEnd != null and noCarWayBill.batchNumEnd != ''">
  83. and batchNumEnd = BINARY #{noCarWayBill.batchNumEnd}
  84. </if>
  85. <if test="noCarWayBill.success == 1">
  86. and billwayStatus in(1,2,3,4)
  87. </if>
  88. <if test="noCarWayBill.success == 2">
  89. and billwayStatus in(-1,-2,-3)
  90. </if>
  91. </where>
  92. </select>
  93. <select id="selectAllByPageException" resultMap="BaseResultMap">
  94. select
  95. <include refid="baseSql" />
  96. from t_waybill_Import
  97. <where>
  98. <if test="noCarWayBill.companyName != null and noCarWayBill.companyName != ''">
  99. and companyName = BINARY #{noCarWayBill.companyName}
  100. </if>
  101. <if test="noCarWayBill.billNum != null and noCarWayBill.billNum != ''">
  102. and billNum = BINARY #{noCarWayBill.billNum}
  103. </if>
  104. <if test="noCarWayBill.taxplayerCode != null and noCarWayBill.taxplayerCode != ''">
  105. and taxplayerCode = BINARY #{noCarWayBill.taxplayerCode}
  106. </if>
  107. <if test="noCarWayBill.startBegin != null and noCarWayBill.startBegin != ''">
  108. and intfaceStartTime BETWEEN #{noCarWayBill.startBegin} and #{noCarWayBill.startEnd}
  109. </if>
  110. <if test="noCarWayBill.endBegin != null and noCarWayBill.endBegin != ''">
  111. and interfaceEndTime BETWEEN #{noCarWayBill.endBegin} and #{noCarWayBill.endEnd}
  112. </if>
  113. and billwayStatus =4
  114. </where>
  115. </select>
  116. <insert id="insertImport" parameterType="com.jkcredit.invoice.model.entity.waybill.NoCarWayBill" >
  117. insert into t_waybill_Import (
  118. customerName,
  119. companyName,
  120. billNum,
  121. plateNum,
  122. plateColor,
  123. startTime,
  124. sourceAddr,
  125. destAddr,
  126. predictEndTime,
  127. fee,
  128. titleType,
  129. taxplayerCode,
  130. intfaceStartTime,
  131. interfaceEndTime,
  132. billwayStatus,
  133. hisFlag,
  134. companyAdress,
  135. companyBank,
  136. companyBankAcc,
  137. companyTel,companyNum,updateTime,batchNumber,batchNumEnd,failReason
  138. )
  139. values ( #{customerName,jdbcType=VARCHAR}, #{companyName,jdbcType=VARCHAR},
  140. #{billNum,jdbcType=VARCHAR}, #{plateNum,jdbcType=VARCHAR}, #{plateColor,jdbcType=VARCHAR},
  141. #{startTime,jdbcType=VARCHAR}, #{sourceAddr,jdbcType=VARCHAR}, #{destAddr,jdbcType=VARCHAR},
  142. #{predictEndTime,jdbcType=VARCHAR}, #{fee,jdbcType=INTEGER}, #{titleType,jdbcType=INTEGER},
  143. #{taxplayerCode,jdbcType=VARCHAR},#{intfaceStartTime,jdbcType=VARCHAR},#{interfaceEndTime,jdbcType=VARCHAR},
  144. #{billwayStatus,jdbcType=INTEGER},#{hisFlag,jdbcType=INTEGER}, #{companyAdress,jdbcType=VARCHAR}, #{companyBank,jdbcType=VARCHAR}
  145. , #{companyBankAcc,jdbcType=VARCHAR}, #{companyTel,jdbcType=VARCHAR},#{companyNum,jdbcType=VARCHAR},#{updateTime,jdbcType=VARCHAR},#{batchNum,jdbcType=VARCHAR},#{batchNumEnd,jdbcType=VARCHAR},#{failReason,jdbcType=VARCHAR}
  146. )
  147. </insert>
  148. <update id="updateByPrimaryKey" parameterType="com.jkcredit.invoice.model.entity.waybill.NoCarWayBill" >
  149. update t_waybill_Import
  150. set customerName = #{customerName,jdbcType=VARCHAR},
  151. companyName = #{companyName,jdbcType=VARCHAR},
  152. billNum = #{billNum,jdbcType=VARCHAR},
  153. plateNum = #{plateNum,jdbcType=VARCHAR},
  154. plateColor = #{plateColor,jdbcType=VARCHAR},
  155. startTime = #{startTime,jdbcType=VARCHAR},
  156. sourceAddr = #{sourceAddr,jdbcType=VARCHAR},
  157. destAddr = #{destAddr,jdbcType=VARCHAR},
  158. predictEndTime = #{predictEndTime,jdbcType=VARCHAR},
  159. fee = #{fee,jdbcType=INTEGER},
  160. titleType = #{titleType,jdbcType=INTEGER},
  161. taxplayerCode = #{taxplayerCode,jdbcType=VARCHAR},
  162. intfaceStartTime = #{intfaceStartTime,jdbcType=VARCHAR},
  163. interfaceEndTime = #{interfaceEndTime,jdbcType=VARCHAR},
  164. billwayStatus = #{billwayStatus,jdbcType=INTEGER},
  165. hisFlag = #{hisFlag,jdbcType=INTEGER},
  166. companyAdress = #{companyAdress,jdbcType=VARCHAR},
  167. companyBank = #{companyBank,jdbcType=VARCHAR},
  168. companyBankAcc = #{companyBankAcc,jdbcType=VARCHAR},
  169. companyTel = #{companyTel,jdbcType=VARCHAR},
  170. companyNum = #{companyNum,jdbcType=VARCHAR},
  171. failReason = #{failReason,jdbcType=VARCHAR}
  172. where id = #{id,jdbcType=INTEGER}
  173. </update>
  174. <update id="updateByBillNum" parameterType="com.jkcredit.invoice.model.entity.waybill.NoCarWayBill" >
  175. update t_waybill_Import
  176. set customerName = #{customerName,jdbcType=VARCHAR},
  177. companyName = #{companyName,jdbcType=VARCHAR},
  178. billNum = #{billNum,jdbcType=VARCHAR},
  179. plateNum = #{plateNum,jdbcType=VARCHAR},
  180. plateColor = #{plateColor,jdbcType=VARCHAR},
  181. startTime = #{startTime,jdbcType=VARCHAR},
  182. sourceAddr = #{sourceAddr,jdbcType=VARCHAR},
  183. destAddr = #{destAddr,jdbcType=VARCHAR},
  184. predictEndTime = #{predictEndTime,jdbcType=VARCHAR},
  185. fee = #{fee,jdbcType=INTEGER},
  186. titleType = #{titleType,jdbcType=INTEGER},
  187. taxplayerCode = #{taxplayerCode,jdbcType=VARCHAR},
  188. intfaceStartTime = #{intfaceStartTime,jdbcType=VARCHAR},
  189. interfaceEndTime = #{interfaceEndTime,jdbcType=VARCHAR},
  190. billwayStatus = #{billwayStatus,jdbcType=INTEGER},
  191. hisFlag = #{hisFlag,jdbcType=INTEGER},
  192. companyAdress = #{companyAdress,jdbcType=VARCHAR},
  193. companyBank = #{companyBank,jdbcType=VARCHAR},
  194. companyBankAcc = #{companyBankAcc,jdbcType=VARCHAR},
  195. companyTel = #{companyTel,jdbcType=VARCHAR},
  196. companyNum = #{companyNum,jdbcType=VARCHAR},
  197. failReason = #{failReason,jdbcType=VARCHAR}
  198. where billNum = BINARY #{billNum,jdbcType=VARCHAR} and batchNumber = BINARY #{batchNum,jdbcType=VARCHAR}
  199. </update>
  200. <select id="selectByBillNum" resultMap="BaseResultMap" parameterType="java.lang.String" >
  201. select
  202. <include refid="baseSql" />
  203. from t_waybill_Import
  204. where billNum = BINARY #{billNum,jdbcType=VARCHAR}
  205. </select>
  206. <select id="selectByHisFlagAndBillStatus" resultMap="BaseResultMap" parameterType="com.jkcredit.invoice.model.entity.waybill.NoCarWayBill" >
  207. select
  208. <include refid="baseSql" />
  209. from t_waybill_Import
  210. where hisFlag = #{hisFlag,jdbcType=INTEGER} and billwayStatus = #{billwayStatus,jdbcType=INTEGER}
  211. </select>
  212. <select id="getNoCarNoVoiceQuery" resultMap="BaseResultMap" parameterType="java.lang.String" >
  213. select
  214. <include refid="baseSql" />
  215. from t_waybill_Import
  216. where customerName = BINARY #{customerName,jdbcType=VARCHAR}
  217. </select>
  218. <update id="upDateCompany" parameterType="com.jkcredit.invoice.model.vo.CompanyVo">
  219. UPDATE t_waybill_Import set companyName = #{newCompanyName} where companyName = #{oldCompanyName}
  220. </update>
  221. </mapper>