CustomerCarRecMapper.xml 13 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311
  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.customer.CustomerCarRecMapper">
  4. <resultMap id="BaseResultMap" type="com.jkcredit.invoice.model.entity.customer.CustomerCarRec">
  5. <id column="customer_name" jdbcType="VARCHAR" property="customerName" />
  6. <result column="company_name" jdbcType="VARCHAR" property="companyName" />
  7. <result column="companyNum" jdbcType="VARCHAR" property="companyNum" />
  8. <result column="car_num" jdbcType="VARCHAR" property="carNum" />
  9. <result column="car_color" jdbcType="VARCHAR" property="carColor" />
  10. <result column="cust_phone" jdbcType="VARCHAR" property="custPhone" />
  11. <result column="etc_num" jdbcType="VARCHAR" property="etcNum" />
  12. <result column="succ_time" jdbcType="VARCHAR" property="succTime" />
  13. <result column="fail_time" jdbcType="VARCHAR" property="failTime" />
  14. <result column="rec_status" jdbcType="INTEGER" property="recStatus" />
  15. <result column="bussiness_type" jdbcType="INTEGER" property="businessType" />
  16. <result column="fail_reason" jdbcType="VARCHAR" property="failReason" />
  17. <result column="inter_type" jdbcType="VARCHAR" property="interType" />
  18. </resultMap>
  19. <sql id="Base_Column_List">
  20. customer_name,companyNum,company_name, car_num, car_color, cust_phone, etc_num, succ_time,
  21. fail_time, rec_status,bussiness_type, fail_reason,inter_type
  22. </sql>
  23. <select id="selectAllBindEtcNoGetInvoice" resultMap="BaseResultMap">
  24. select
  25. <include refid="Base_Column_List" />
  26. from t_customer_carRec where rec_status=1 and bussiness_type=0
  27. </select>
  28. <select id="selectAllByPage" resultMap="BaseResultMap">
  29. select
  30. <include refid="Base_Column_List" />
  31. from t_customer_carRec
  32. where
  33. rec_status=1
  34. <if test="query.customerName != null">
  35. and customer_name = BINARY #{query.customerName,jdbcType=VARCHAR}
  36. </if>
  37. <if test="query.carNum != null and query.carNum != ''">
  38. and car_num = BINARY #{query.carNum}
  39. </if>
  40. <if test="query.companyName != null and query.companyName != ''">
  41. and company_name LIKE BINARY CONCAT('%',#{query.companyName},'%')
  42. </if>
  43. <if test="query.companyNum != null and query.companyNum != ''">
  44. and companyNum = BINARY #{query.companyNum}
  45. </if>
  46. <if test="query.etcNum != null and query.etcNum != ''">
  47. and etc_num = BINARY #{query.etcNum}
  48. </if>
  49. <if test="query.recStatus != null and query.recStatus != ''">
  50. and rec_status = (#{query.recStatus}-1)
  51. </if>
  52. <if test="query.businessType != null and query.businessType != ''">
  53. and bussiness_type = BINARY #{query.businessType}
  54. </if>
  55. <if test="query.startTime != null and query.startTime != ''">
  56. and (succ_time BETWEEN #{query.startTime} and #{query.endTime}
  57. or fail_time BETWEEN #{query.startTime} and #{query.endTime}
  58. )
  59. </if>
  60. ORDER BY succ_time||fail_time DESC
  61. </select>
  62. <select id="selectByCustName" parameterType="java.lang.String" resultMap="BaseResultMap">
  63. select
  64. <include refid="Base_Column_List" />
  65. from t_customer_carRec
  66. where customer_name = BINARY #{customerName,jdbcType=VARCHAR}
  67. </select>
  68. <select id="selectByCarNum" parameterType="java.lang.String" resultMap="BaseResultMap">
  69. select
  70. <include refid="Base_Column_List" />
  71. from t_customer_carRec
  72. where car_num = BINARY #{carNum,jdbcType=VARCHAR} and bussiness_type=2
  73. </select>
  74. <select id="selectBySelfCarNum" parameterType="java.lang.String" resultMap="BaseResultMap">
  75. select
  76. <include refid="Base_Column_List" />
  77. from t_customer_carRec
  78. where car_num = BINARY #{carNum,jdbcType=VARCHAR} and bussiness_type=0 and rec_status = 1
  79. </select>
  80. <select id="selectAllEtcBySelfCarNum" parameterType="java.lang.String" resultMap="BaseResultMap">
  81. select
  82. <include refid="Base_Column_List" />
  83. from t_customer_carRec
  84. where car_num = BINARY #{carNum,jdbcType=VARCHAR} and bussiness_type=0
  85. </select>
  86. <select id="selectByETC" parameterType="java.lang.String" resultMap="BaseResultMap">
  87. select
  88. <include refid="Base_Column_List" />
  89. from t_customer_carRec
  90. where etc_num = BINARY #{etcNum,jdbcType=VARCHAR} AND bussiness_type=0
  91. </select>
  92. <select id="selectByETCForLock" parameterType="java.lang.String" resultMap="BaseResultMap">
  93. select
  94. <include refid="Base_Column_List" />
  95. from t_customer_carRec
  96. where etc_num = BINARY #{etcNum,jdbcType=VARCHAR} AND bussiness_type=0 FOR UPDATE
  97. </select>
  98. <update id="updateWaitETCStatus" parameterType="com.jkcredit.invoice.model.entity.customer.CustomerCarRec">
  99. update t_customer_carRec set rec_status = #{recStatus,jdbcType=INTEGER} ,succ_time = #{succTime,jdbcType=VARCHAR}, fail_time = #{failTime,jdbcType=VARCHAR}
  100. , fail_reason = #{failReason,jdbcType=VARCHAR}, inter_type = #{interType,jdbcType=VARCHAR}
  101. where companyNum = BINARY #{companyNum,jdbcType=VARCHAR} and cust_phone = BINARY #{custPhone,jdbcType=VARCHAR} AND bussiness_type=0 and rec_status = 3
  102. </update>
  103. <delete id="selectByCustomerName" parameterType="java.lang.String">
  104. delete from t_customer_carRec
  105. where customer_name = BINARY #{customerName,jdbcType=VARCHAR}
  106. </delete>
  107. <insert id="insert" parameterType="com.jkcredit.invoice.model.entity.customer.CustomerCarRec">
  108. insert into t_customer_carRec (customer_name,companyNum, company_name, car_num,
  109. car_color, cust_phone, etc_num,
  110. succ_time, fail_time, rec_status,bussiness_type,
  111. fail_reason,inter_type)
  112. values (#{customerName,jdbcType=VARCHAR},#{companyNum,jdbcType=VARCHAR}, #{companyName,jdbcType=VARCHAR}, #{carNum,jdbcType=VARCHAR},
  113. #{carColor,jdbcType=VARCHAR}, #{custPhone,jdbcType=VARCHAR}, #{etcNum,jdbcType=VARCHAR},
  114. #{succTime,jdbcType=VARCHAR}, #{failTime,jdbcType=VARCHAR}, #{recStatus,jdbcType=INTEGER},#{businessType,jdbcType=INTEGER},
  115. #{failReason,jdbcType=VARCHAR},#{interType,jdbcType=INTEGER})
  116. </insert>
  117. <insert id="insertSelective" parameterType="com.jkcredit.invoice.model.entity.customer.CustomerCarRec">
  118. insert into t_customer_carRec
  119. <trim prefix="(" suffix=")" suffixOverrides=",">
  120. <if test="customerName != null">
  121. customer_name,
  122. </if>
  123. <if test="companyNum != null">
  124. companyNum,
  125. </if>
  126. <if test="companyName != null">
  127. company_name,
  128. </if>
  129. <if test="carNum != null">
  130. car_num,
  131. </if>
  132. <if test="carColor != null">
  133. car_color,
  134. </if>
  135. <if test="custPhone != null">
  136. cust_phone,
  137. </if>
  138. <if test="etcNum != null">
  139. etc_num,
  140. </if>
  141. <if test="succTime != null">
  142. succ_time,
  143. </if>
  144. <if test="failTime != null">
  145. fail_time,
  146. </if>
  147. <if test="recStatus != null">
  148. rec_status,
  149. </if>
  150. <if test="failReason != null">
  151. fail_reason,
  152. </if>
  153. <if test="interType != null">
  154. inter_type = #{interType,jdbcType=INTEGER}
  155. </if>
  156. </trim>
  157. <trim prefix="values (" suffix=")" suffixOverrides=",">
  158. <if test="customerName != null">
  159. #{customerName,jdbcType=VARCHAR},
  160. </if>
  161. <if test="companyNum != null">
  162. #{companyNum,jdbcType=VARCHAR},
  163. </if>
  164. <if test="companyName != null">
  165. #{companyName,jdbcType=VARCHAR},
  166. </if>
  167. <if test="carNum != null">
  168. #{carNum,jdbcType=VARCHAR},
  169. </if>
  170. <if test="carColor != null">
  171. #{carColor,jdbcType=VARCHAR},
  172. </if>
  173. <if test="custPhone != null">
  174. #{custPhone,jdbcType=VARCHAR},
  175. </if>
  176. <if test="etcNum != null">
  177. #{etcNum,jdbcType=VARCHAR},
  178. </if>
  179. <if test="succTime != null">
  180. #{succTime,jdbcType=TIMESTAMP},
  181. </if>
  182. <if test="failTime != null">
  183. #{failTime,jdbcType=TIMESTAMP},
  184. </if>
  185. <if test="recStatus != null">
  186. #{recStatus,jdbcType=INTEGER},
  187. </if>
  188. <if test="failReason != null">
  189. #{failReason,jdbcType=VARCHAR},
  190. </if>
  191. <if test="interType != null">
  192. inter_type = #{interType,jdbcType=INTEGER}
  193. </if>
  194. </trim>
  195. </insert>
  196. <update id="updateByPrimaryKeySelective" parameterType="com.jkcredit.invoice.model.entity.customer.CustomerCarRec">
  197. update t_customer_carRec
  198. <set>
  199. <if test="companyName != null">
  200. company_name = #{companyName,jdbcType=VARCHAR},
  201. </if>
  202. <if test="carNum != null">
  203. car_num = #{carNum,jdbcType=VARCHAR},
  204. </if>
  205. <if test="carColor != null">
  206. car_color = #{carColor,jdbcType=VARCHAR},
  207. </if>
  208. <if test="custPhone != null">
  209. cust_phone = #{custPhone,jdbcType=VARCHAR},
  210. </if>
  211. <if test="etcNum != null">
  212. etc_num = #{etcNum,jdbcType=VARCHAR},
  213. </if>
  214. <if test="succTime != null">
  215. succ_time = #{succTime,jdbcType=TIMESTAMP},
  216. </if>
  217. <if test="failTime != null">
  218. fail_time = #{failTime,jdbcType=TIMESTAMP},
  219. </if>
  220. <if test="recStatus != null">
  221. rec_status = #{recStatus,jdbcType=INTEGER},
  222. </if>
  223. <if test="failReason != null">
  224. fail_reason = #{failReason,jdbcType=VARCHAR},
  225. </if>
  226. <if test="interType != null">
  227. inter_type = #{interType,jdbcType=INTEGER}
  228. </if>
  229. </set>
  230. where car_num = BINARY #{carNum,jdbcType=VARCHAR} and bussiness_type=2
  231. </update>
  232. <update id="updateETCByPrimaryKeySelective" parameterType="com.jkcredit.invoice.model.entity.customer.CustomerCarRec">
  233. update t_customer_carRec
  234. <set>
  235. <if test="companyName != null">
  236. company_name = #{companyName,jdbcType=VARCHAR},
  237. </if>
  238. <if test="carNum != null">
  239. car_num = #{carNum,jdbcType=VARCHAR},
  240. </if>
  241. <if test="carColor != null">
  242. car_color = #{carColor,jdbcType=VARCHAR},
  243. </if>
  244. <if test="custPhone != null">
  245. cust_phone = #{custPhone,jdbcType=VARCHAR},
  246. </if>
  247. <if test="etcNum != null">
  248. etc_num = #{etcNum,jdbcType=VARCHAR},
  249. </if>
  250. <if test="succTime != null">
  251. succ_time = #{succTime,jdbcType=TIMESTAMP},
  252. </if>
  253. <if test="failTime != null">
  254. fail_time = #{failTime,jdbcType=TIMESTAMP},
  255. </if>
  256. <if test="recStatus != null">
  257. rec_status = #{recStatus,jdbcType=INTEGER},
  258. </if>
  259. <if test="failReason != null">
  260. fail_reason = #{failReason,jdbcType=VARCHAR},
  261. </if>
  262. <if test="interType != null">
  263. inter_type = #{interType,jdbcType=INTEGER}
  264. </if>
  265. </set>
  266. where etc_num = BINARY #{etcNum,jdbcType=VARCHAR} and bussiness_type=0
  267. </update>
  268. <update id="updateByPrimaryKey" parameterType="com.jkcredit.invoice.model.entity.customer.CustomerCarRec">
  269. update t_customer_carRec
  270. set
  271. customer_name = #{customerName,jdbcType=VARCHAR},
  272. company_name = #{companyName,jdbcType=VARCHAR},
  273. car_num = #{carNum,jdbcType=VARCHAR},
  274. car_color = #{carColor,jdbcType=VARCHAR},
  275. cust_phone = #{custPhone,jdbcType=VARCHAR},
  276. etc_num = #{etcNum,jdbcType=VARCHAR},
  277. succ_time = #{succTime,jdbcType=TIMESTAMP},
  278. fail_time = #{failTime,jdbcType=TIMESTAMP},
  279. rec_status = #{recStatus,jdbcType=INTEGER},
  280. fail_reason = #{failReason,jdbcType=VARCHAR},
  281. inter_type = #{interType,jdbcType=INTEGER}
  282. where car_num = BINARY #{carNum,jdbcType=VARCHAR} and bussiness_type=2
  283. </update>
  284. <update id="updateETCByPrimaryKey" parameterType="com.jkcredit.invoice.model.entity.customer.CustomerCarRec">
  285. update t_customer_carRec
  286. set
  287. customer_name = #{customerName,jdbcType=VARCHAR},
  288. company_name = #{companyName,jdbcType=VARCHAR},
  289. car_num = #{carNum,jdbcType=VARCHAR},
  290. car_color = #{carColor,jdbcType=VARCHAR},
  291. cust_phone = #{custPhone,jdbcType=VARCHAR},
  292. etc_num = #{etcNum,jdbcType=VARCHAR},
  293. succ_time = #{succTime,jdbcType=TIMESTAMP},
  294. fail_time = #{failTime,jdbcType=TIMESTAMP},
  295. rec_status = #{recStatus,jdbcType=INTEGER},
  296. fail_reason = #{failReason,jdbcType=VARCHAR},
  297. inter_type = #{interType,jdbcType=INTEGER}
  298. where etc_num = BINARY #{etcNum,jdbcType=VARCHAR} and bussiness_type=0
  299. </update>
  300. <update id="upDateCompanySelf" parameterType="com.jkcredit.invoice.model.vo.CompanyVo">
  301. UPDATE t_customer_carRec set company_Name = #{newCompanyName} where company_Name = #{oldCompanyName} and bussiness_type=0
  302. </update>
  303. <update id="upDateCompanyNo" parameterType="com.jkcredit.invoice.model.vo.CompanyVo">
  304. UPDATE t_customer_carRec set company_Name = #{newCompanyName} where company_Name = #{oldCompanyName} and bussiness_type=2
  305. </update>
  306. </mapper>