CustomerRecMapper.xml 14 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.CustomerRecMapper" >
  4. <resultMap id="BaseResultMap" type="com.jkcredit.invoice.model.entity.customer.CustomerRec" >
  5. <id column="id" property="id" jdbcType="INTEGER" />
  6. <result column="customerName" property="customerName" jdbcType="VARCHAR" />
  7. <result column="company_leader" property="companyLeader" jdbcType="VARCHAR" />
  8. <result column="company_leader_Phone" property="companyLeaderPhone" jdbcType="VARCHAR" />
  9. <result column="company_name" property="companyName" jdbcType="VARCHAR" />
  10. <result column="company_referenceNum" property="companyReferencenum" jdbcType="VARCHAR" />
  11. <result column="company_openbank" property="companyOpenbank" jdbcType="VARCHAR" />
  12. <result column="company_openbank_acc" property="companyOpenbankAcc" jdbcType="VARCHAR" />
  13. <result column="company_adress" property="companyAdress" jdbcType="VARCHAR" />
  14. <result column="company_phone" property="companyPhone" jdbcType="VARCHAR" />
  15. <result column="createTime" property="createtime" jdbcType="VARCHAR" />
  16. <result column="company_belong_name" property="companyBelongName" jdbcType="VARCHAR" />
  17. <result column="rec_status" property="recStatus" jdbcType="INTEGER" />
  18. <result column="inter_type" property="interType" jdbcType="INTEGER" />
  19. <result column="bussiness_type" property="bussinessType" jdbcType="INTEGER" />
  20. <result column="company_type" property="companyType" jdbcType="INTEGER" />
  21. <result column="operating_rangeType" property="operatingRangeType" jdbcType="INTEGER" />
  22. <result column="company_num" property="companyNum" jdbcType="VARCHAR" />
  23. <result column="service_startTime" property="serviceStartTime" jdbcType="VARCHAR" />
  24. <result column="service_endTime" property="serviceEndTime" jdbcType="VARCHAR" />
  25. <result column="service_type" property="serviceType" jdbcType="INTEGER" />
  26. <result column="contractFileName" property="contractFileName" jdbcType="VARCHAR" />
  27. <result column="contractSuc" property="contractSuc" jdbcType="INTEGER" />
  28. <result column="base64Str" property="base64Str" jdbcType="VARCHAR" />
  29. <result column="contrantNum" property="contrantNum" jdbcType="VARCHAR" />
  30. <result column="lowerFileName" property="lowerFileName" jdbcType="VARCHAR" />
  31. <result column="lowerBase64Str" property="lowerBase64Str" jdbcType="VARCHAR" />
  32. </resultMap>
  33. <sql id="Base_Column_List" >
  34. id, customerName,company_leader, company_leader_Phone, company_name, company_referenceNum, company_openbank,
  35. company_openbank_acc, company_adress, company_phone, createTime, company_belong_name,
  36. rec_status, inter_type,bussiness_type,company_type,operating_rangeType,company_num,service_startTime
  37. ,service_endTime,service_type,contractFileName,contractSuc,contrantNum,lowerFileName
  38. </sql>
  39. <select id="selectAllByPage" resultMap="BaseResultMap">
  40. select
  41. <include refid="Base_Column_List" />
  42. from t_customer_rec
  43. <where>
  44. <if test="customerRec.customerName != null and customerRec.customerName != ''">
  45. AND customerName LIKE CONCAT('%',#{customerRec.customerName},'%')
  46. </if>
  47. <if test="customerRec.companyLeaderPhone != null and customerRec.companyLeaderPhone != ''">
  48. and company_leader_Phone = #{customerRec.companyLeaderPhone}
  49. </if>
  50. <if test="customerRec.companyReferencenum != null and customerRec.companyReferencenum != ''">
  51. and company_referenceNum = #{customerRec.companyReferencenum}
  52. </if>
  53. <if test="customerRec.companyName != null and customerRec.companyName != ''">
  54. and company_name = #{customerRec.companyName}
  55. </if>
  56. <if test="customerRec.serviceEndTimeStart != null and customerRec.serviceEndTimeStart != ''">
  57. and service_endTime BETWEEN #{customerRec.serviceEndTimeStart} and #{customerRec.serviceEndTimeEnd}
  58. </if>
  59. </where>
  60. </select>
  61. <select id="selectByPrimaryKey" resultMap="BaseResultMap" parameterType="java.lang.Integer" >
  62. select
  63. <include refid="Base_Column_List" />
  64. from t_customer_rec
  65. where id = #{id,jdbcType=INTEGER}
  66. </select>
  67. <select id="selectByPrimaryKeyHasBase64" resultMap="BaseResultMap" parameterType="java.lang.Integer" >
  68. select
  69. <include refid="Base_Column_List" />,base64Str,lowerBase64Str
  70. from t_customer_rec
  71. where id = #{id,jdbcType=INTEGER}
  72. </select>
  73. <select id="selectByCustomerName" resultMap="BaseResultMap" parameterType="java.lang.String" >
  74. select
  75. <include refid="Base_Column_List" />
  76. from t_customer_rec
  77. where customerName = #{customerName,jdbcType=VARCHAR}
  78. </select>
  79. <select id="selectByCustomerNameAndCompany" resultMap="BaseResultMap" parameterType="com.jkcredit.invoice.model.entity.customer.CustomerRec" >
  80. select
  81. <include refid="Base_Column_List" />
  82. from t_customer_rec
  83. where customerName = #{customerName,jdbcType=VARCHAR} AND company_name = #{companyName,jdbcType=VARCHAR}
  84. </select>
  85. <select id="selectByCustomerNameAndCompanyReference" resultMap="BaseResultMap" parameterType="com.jkcredit.invoice.model.entity.customer.CustomerRec" >
  86. select
  87. <include refid="Base_Column_List" />
  88. from t_customer_rec
  89. where customerName = #{customerName,jdbcType=VARCHAR} AND company_referenceNum = #{companyReferencenum,jdbcType=VARCHAR}
  90. </select>
  91. <select id="selectByCustomerNameAndCompanyConcat" resultMap="BaseResultMap" parameterType="com.jkcredit.invoice.model.entity.customer.CustomerRec" >
  92. select
  93. <include refid="Base_Column_List" />,base64Str
  94. from t_customer_rec
  95. where customerName = #{customerName,jdbcType=VARCHAR} AND company_name = #{companyName,jdbcType=VARCHAR}
  96. </select>
  97. <select id="selectByCustomerNameAndCompanyNum" resultMap="BaseResultMap" parameterType="com.jkcredit.invoice.model.entity.customer.CustomerRec" >
  98. select
  99. <include refid="Base_Column_List" />
  100. from t_customer_rec
  101. where customerName = #{customerName,jdbcType=VARCHAR} AND company_num = #{companyNum,jdbcType=VARCHAR}
  102. </select>
  103. <delete id="deleteByPrimaryKey" parameterType="java.lang.Integer" >
  104. delete from t_customer_rec
  105. where id = #{id,jdbcType=INTEGER}
  106. </delete>
  107. <insert id="insert" parameterType="com.jkcredit.invoice.model.entity.customer.CustomerRec" >
  108. insert into t_customer_rec (customerName,company_leader, company_leader_Phone,
  109. company_name, company_referenceNum, company_openbank,
  110. company_openbank_acc, company_adress, company_phone,
  111. createTime, company_belong_name, rec_status,
  112. inter_type,bussiness_type,company_type,operating_rangeType,company_num,
  113. service_startTime,service_endTime,service_type,contractFileName,base64Str,contractSuc,lowerFileName,lowerBase64Str
  114. )
  115. values (#{customerName,jdbcType=VARCHAR}, #{companyLeader,jdbcType=VARCHAR}, #{companyLeaderPhone,jdbcType=VARCHAR},
  116. #{companyName,jdbcType=VARCHAR}, #{companyReferencenum,jdbcType=VARCHAR}, #{companyOpenbank,jdbcType=VARCHAR},
  117. #{companyOpenbankAcc,jdbcType=VARCHAR}, #{companyAdress,jdbcType=VARCHAR}, #{companyPhone,jdbcType=VARCHAR},
  118. #{createtime,jdbcType=TIMESTAMP}, #{companyBelongName,jdbcType=VARCHAR}, #{recStatus,jdbcType=INTEGER},
  119. #{interType,jdbcType=INTEGER}, #{bussinessType,jdbcType=INTEGER},#{companyType,jdbcType=INTEGER},#{operatingRangeType,jdbcType=INTEGER},#{companyNum,jdbcType=VARCHAR},
  120. #{serviceStartTime,jdbcType=VARCHAR},#{serviceEndTime,jdbcType=VARCHAR},#{serviceType,jdbcType=INTEGER},#{contractFileName,jdbcType=VARCHAR},#{base64Str,jdbcType=VARCHAR},#{contractSuc,jdbcType=INTEGER},#{lowerFileName,jdbcType=VARCHAR},#{lowerBase64Str,jdbcType=VARCHAR}
  121. )
  122. </insert>
  123. <insert id="insertSelective" parameterType="com.jkcredit.invoice.model.entity.customer.CustomerRec" >
  124. insert into t_customer_rec
  125. <trim prefix="(" suffix=")" suffixOverrides="," >
  126. <if test="id != null" >
  127. id,
  128. </if>
  129. <if test="companyLeader != null" >
  130. company_leader,
  131. </if>
  132. <if test="companyLeaderPhone != null" >
  133. company_leader_Phone,
  134. </if>
  135. <if test="companyName != null" >
  136. company_name,
  137. </if>
  138. <if test="companyReferencenum != null" >
  139. company_referenceNum,
  140. </if>
  141. <if test="companyOpenbank != null" >
  142. company_openbank,
  143. </if>
  144. <if test="companyOpenbankAcc != null" >
  145. company_openbank_acc,
  146. </if>
  147. <if test="companyAdress != null" >
  148. company_adress,
  149. </if>
  150. <if test="companyPhone != null" >
  151. company_phone,
  152. </if>
  153. <if test="createtime != null" >
  154. createTime,
  155. </if>
  156. <if test="companyBelongName != null" >
  157. company_belong_name,
  158. </if>
  159. <if test="recStatus != null" >
  160. rec_status,
  161. </if>
  162. <if test="interType != null" >
  163. inter_type,
  164. </if>
  165. </trim>
  166. <trim prefix="values (" suffix=")" suffixOverrides="," >
  167. <if test="id != null" >
  168. #{id,jdbcType=INTEGER},
  169. </if>
  170. <if test="companyLeader != null" >
  171. #{companyLeader,jdbcType=VARCHAR},
  172. </if>
  173. <if test="companyLeaderPhone != null" >
  174. #{companyLeaderPhone,jdbcType=VARCHAR},
  175. </if>
  176. <if test="companyName != null" >
  177. #{companyName,jdbcType=VARCHAR},
  178. </if>
  179. <if test="companyReferencenum != null" >
  180. #{companyReferencenum,jdbcType=VARCHAR},
  181. </if>
  182. <if test="companyOpenbank != null" >
  183. #{companyOpenbank,jdbcType=VARCHAR},
  184. </if>
  185. <if test="companyOpenbankAcc != null" >
  186. #{companyOpenbankAcc,jdbcType=VARCHAR},
  187. </if>
  188. <if test="companyAdress != null" >
  189. #{companyAdress,jdbcType=VARCHAR},
  190. </if>
  191. <if test="companyPhone != null" >
  192. #{companyPhone,jdbcType=VARCHAR},
  193. </if>
  194. <if test="createtime != null" >
  195. #{createtime,jdbcType=TIMESTAMP},
  196. </if>
  197. <if test="companyBelongName != null" >
  198. #{companyBelongName,jdbcType=VARCHAR},
  199. </if>
  200. <if test="recStatus != null" >
  201. #{recStatus,jdbcType=INTEGER},
  202. </if>
  203. <if test="interType != null" >
  204. #{interType,jdbcType=INTEGER},
  205. </if>
  206. </trim>
  207. </insert>
  208. <update id="updateByPrimaryKeySelective" parameterType="com.jkcredit.invoice.model.entity.customer.CustomerRec" >
  209. update t_customer_rec
  210. <set >
  211. <if test="companyLeader != null" >
  212. company_leader = #{companyLeader,jdbcType=VARCHAR},
  213. </if>
  214. <if test="companyLeaderPhone != null" >
  215. company_leader_Phone = #{companyLeaderPhone,jdbcType=VARCHAR},
  216. </if>
  217. <if test="companyName != null" >
  218. company_name = #{companyName,jdbcType=VARCHAR},
  219. </if>
  220. <if test="companyReferencenum != null" >
  221. company_referenceNum = #{companyReferencenum,jdbcType=VARCHAR},
  222. </if>
  223. <if test="companyOpenbank != null" >
  224. company_openbank = #{companyOpenbank,jdbcType=VARCHAR},
  225. </if>
  226. <if test="companyOpenbankAcc != null" >
  227. company_openbank_acc = #{companyOpenbankAcc,jdbcType=VARCHAR},
  228. </if>
  229. <if test="companyAdress != null" >
  230. company_adress = #{companyAdress,jdbcType=VARCHAR},
  231. </if>
  232. <if test="companyPhone != null" >
  233. company_phone = #{companyPhone,jdbcType=VARCHAR},
  234. </if>
  235. <if test="createtime != null" >
  236. createTime = #{createtime,jdbcType=TIMESTAMP},
  237. </if>
  238. <if test="companyBelongName != null" >
  239. company_belong_name = #{companyBelongName,jdbcType=VARCHAR},
  240. </if>
  241. <if test="recStatus != null" >
  242. rec_status = #{recStatus,jdbcType=INTEGER},
  243. </if>
  244. <if test="interType != null" >
  245. inter_type = #{interType,jdbcType=INTEGER},
  246. </if>
  247. <if test="bussinessType != null" >
  248. bussiness_type = #{bussinessType,jdbcType=INTEGER},
  249. </if>
  250. <if test="companyType != null" >
  251. company_type = #{companyType,jdbcType=INTEGER},
  252. </if>
  253. <if test="operatingRangeType != null" >
  254. operating_rangeType = #{operatingRangeType,jdbcType=INTEGER},
  255. </if>
  256. <if test="companyNum != null" >
  257. company_num = #{companyNum,jdbcType=VARCHAR},
  258. </if>
  259. <if test="serviceStartTime != null" >
  260. service_startTime = #{serviceStartTime,jdbcType=VARCHAR},
  261. </if>
  262. <if test="serviceEndTime != null" >
  263. service_endTime = #{serviceEndTime,jdbcType=VARCHAR},
  264. </if>
  265. <if test="serviceType != null" >
  266. service_type = #{serviceType,jdbcType=INTEGER},
  267. </if>
  268. <if test="contractFileName != null" >
  269. contractFileName = #{contractFileName,jdbcType=VARCHAR},
  270. </if>
  271. <if test="base64Str != null" >
  272. base64Str = #{base64Str,jdbcType=VARCHAR},
  273. </if>
  274. <if test="contractSuc != null" >
  275. contractSuc = #{contractSuc,jdbcType=INTEGER},
  276. </if>
  277. <if test="contrantNum != null" >
  278. contrantNum = #{contrantNum,jdbcType=VARCHAR},
  279. </if>
  280. </set>
  281. where id = #{id,jdbcType=INTEGER}
  282. </update>
  283. <update id="updateByPrimaryKey" parameterType="com.jkcredit.invoice.model.entity.customer.CustomerRec" >
  284. update t_customer_rec
  285. set company_leader = #{companyLeader,jdbcType=VARCHAR},
  286. company_leader_Phone = #{companyLeaderPhone,jdbcType=VARCHAR},
  287. company_name = #{companyName,jdbcType=VARCHAR},
  288. company_referenceNum = #{companyReferencenum,jdbcType=VARCHAR},
  289. company_openbank = #{companyOpenbank,jdbcType=VARCHAR},
  290. company_openbank_acc = #{companyOpenbankAcc,jdbcType=VARCHAR},
  291. company_adress = #{companyAdress,jdbcType=VARCHAR},
  292. company_phone = #{companyPhone,jdbcType=VARCHAR},
  293. createTime = #{createtime,jdbcType=TIMESTAMP},
  294. company_belong_name = #{companyBelongName,jdbcType=VARCHAR},
  295. rec_status = #{recStatus,jdbcType=INTEGER},
  296. inter_type = #{interType,jdbcType=INTEGER},
  297. bussiness_type = #{bussinessType,jdbcType=INTEGER},
  298. company_type = #{companyType,jdbcType=INTEGER},
  299. operating_rangeType = #{operatingRangeType,jdbcType=INTEGER},
  300. company_num = #{companyNum,jdbcType=VARCHAR},
  301. service_startTime = #{serviceStartTime,jdbcType=VARCHAR},
  302. service_endTime = #{serviceEndTime,jdbcType=VARCHAR},
  303. service_type = #{serviceType,jdbcType=INTEGER},
  304. contractFileName = #{contractFileName,jdbcType=VARCHAR},
  305. base64Str = #{base64Str,jdbcType=VARCHAR},
  306. contractSuc = #{contractSuc,jdbcType=INTEGER},
  307. contrantNum = #{contrantNum,jdbcType=VARCHAR}
  308. where id = #{id,jdbcType=INTEGER}
  309. </update>
  310. </mapper>