CustomerRecMapper.xml 16 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344
  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 =#{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 LIKE CONCAT('%',#{customerRec.companyName},'%')
  55. </if>
  56. <if test="customerRec.companyBelongName != null and customerRec.companyBelongName != ''">
  57. and company_belong_name LIKE CONCAT('%',#{customerRec.companyBelongName},'%')
  58. </if>
  59. <if test="customerRec.serviceEndTimeStart != null and customerRec.serviceEndTimeStart != ''">
  60. and service_endTime BETWEEN #{customerRec.serviceEndTimeStart} and #{customerRec.serviceEndTimeEnd}
  61. </if>
  62. </where>
  63. order by id DESC
  64. </select>
  65. <select id="selectAllByPageExport" resultMap="BaseResultMap">
  66. select
  67. <include refid="Base_Column_List" />
  68. from t_customer_rec
  69. <where>
  70. <if test="customerRec.customerName != null and customerRec.customerName != ''">
  71. AND customerName LIKE CONCAT('%',#{customerRec.customerName},'%')
  72. </if>
  73. <if test="customerRec.companyName != null and customerRec.companyName != ''">
  74. and company_name LIKE CONCAT('%',#{customerRec.companyName},'%')
  75. </if>
  76. <if test="customerRec.companyBelongName != null and customerRec.companyBelongName != ''">
  77. and company_belong_name LIKE CONCAT('%',#{customerRec.companyBelongName},'%')
  78. </if>
  79. </where>
  80. ORDER by customerName
  81. </select>
  82. <select id="selectByPrimaryKey" resultMap="BaseResultMap" parameterType="java.lang.String" >
  83. select
  84. <include refid="Base_Column_List" />
  85. from t_customer_rec
  86. where company_num = #{id,jdbcType=INTEGER}
  87. </select>
  88. <select id="selectByPrimaryKeyHasBase64" resultMap="BaseResultMap" parameterType="java.lang.Integer" >
  89. select
  90. <include refid="Base_Column_List" />,base64Str,lowerBase64Str
  91. from t_customer_rec
  92. where id = #{id,jdbcType=INTEGER}
  93. </select>
  94. <select id="selectByCustomerName" resultMap="BaseResultMap" parameterType="java.lang.String" >
  95. select
  96. <include refid="Base_Column_List" />
  97. from t_customer_rec
  98. where customerName = #{customerName,jdbcType=VARCHAR} and rec_status =1
  99. </select>
  100. <select id="selectByCustomerNameAll" resultMap="BaseResultMap" parameterType="java.lang.String" >
  101. select
  102. <include refid="Base_Column_List" />
  103. from t_customer_rec
  104. where customerName = #{customerName,jdbcType=VARCHAR}
  105. </select>
  106. <select id="selectByCustomerNameAndCompany" resultMap="BaseResultMap" parameterType="com.jkcredit.invoice.model.entity.customer.CustomerRec" >
  107. select
  108. <include refid="Base_Column_List" />
  109. from t_customer_rec
  110. where customerName = #{customerName,jdbcType=VARCHAR} AND company_name = #{companyName,jdbcType=VARCHAR}
  111. </select>
  112. <select id="selectByCustomerNameAndCompanyReference" resultMap="BaseResultMap" parameterType="com.jkcredit.invoice.model.entity.customer.CustomerRec" >
  113. select
  114. <include refid="Base_Column_List" />
  115. from t_customer_rec
  116. where customerName = #{customerName,jdbcType=VARCHAR} AND company_referenceNum = #{companyReferencenum,jdbcType=VARCHAR}
  117. </select>
  118. <select id="selectByCustomerNameAndCompanyConcat" resultMap="BaseResultMap" parameterType="com.jkcredit.invoice.model.entity.customer.CustomerRec" >
  119. select
  120. <include refid="Base_Column_List" />,base64Str
  121. from t_customer_rec
  122. where customerName = #{customerName,jdbcType=VARCHAR} AND company_name = #{companyName,jdbcType=VARCHAR}
  123. </select>
  124. <select id="selectByCustomerNameAndCompanyNum" resultMap="BaseResultMap" parameterType="com.jkcredit.invoice.model.entity.customer.CustomerRec" >
  125. select
  126. <include refid="Base_Column_List" />
  127. from t_customer_rec
  128. where customerName = #{customerName,jdbcType=VARCHAR} AND company_num = #{companyNum,jdbcType=VARCHAR}
  129. </select>
  130. <delete id="deleteByPrimaryKey" parameterType="java.lang.Integer" >
  131. delete from t_customer_rec
  132. where id = #{id,jdbcType=INTEGER}
  133. </delete>
  134. <insert id="insert" parameterType="com.jkcredit.invoice.model.entity.customer.CustomerRec" >
  135. insert into t_customer_rec (customerName,company_leader, company_leader_Phone,
  136. company_name, company_referenceNum, company_openbank,
  137. company_openbank_acc, company_adress, company_phone,
  138. createTime, company_belong_name, rec_status,
  139. inter_type,bussiness_type,company_type,operating_rangeType,company_num,
  140. service_startTime,service_endTime,service_type,contractFileName,base64Str,contractSuc,lowerFileName,lowerBase64Str
  141. )
  142. values (#{customerName,jdbcType=VARCHAR}, #{companyLeader,jdbcType=VARCHAR}, #{companyLeaderPhone,jdbcType=VARCHAR},
  143. #{companyName,jdbcType=VARCHAR}, #{companyReferencenum,jdbcType=VARCHAR}, #{companyOpenbank,jdbcType=VARCHAR},
  144. #{companyOpenbankAcc,jdbcType=VARCHAR}, #{companyAdress,jdbcType=VARCHAR}, #{companyPhone,jdbcType=VARCHAR},
  145. #{createtime,jdbcType=TIMESTAMP}, #{companyBelongName,jdbcType=VARCHAR}, #{recStatus,jdbcType=INTEGER},
  146. #{interType,jdbcType=INTEGER}, #{bussinessType,jdbcType=INTEGER},#{companyType,jdbcType=INTEGER},#{operatingRangeType,jdbcType=INTEGER},#{companyNum,jdbcType=VARCHAR},
  147. #{serviceStartTime,jdbcType=VARCHAR},#{serviceEndTime,jdbcType=VARCHAR},#{serviceType,jdbcType=INTEGER},#{contractFileName,jdbcType=VARCHAR},#{base64Str,jdbcType=VARCHAR},#{contractSuc,jdbcType=INTEGER},#{lowerFileName,jdbcType=VARCHAR},#{lowerBase64Str,jdbcType=VARCHAR}
  148. )
  149. </insert>
  150. <insert id="insertSelective" parameterType="com.jkcredit.invoice.model.entity.customer.CustomerRec" >
  151. insert into t_customer_rec
  152. <trim prefix="(" suffix=")" suffixOverrides="," >
  153. <if test="id != null" >
  154. id,
  155. </if>
  156. <if test="companyLeader != null" >
  157. company_leader,
  158. </if>
  159. <if test="companyLeaderPhone != null" >
  160. company_leader_Phone,
  161. </if>
  162. <if test="companyName != null" >
  163. company_name,
  164. </if>
  165. <if test="companyReferencenum != null" >
  166. company_referenceNum,
  167. </if>
  168. <if test="companyOpenbank != null" >
  169. company_openbank,
  170. </if>
  171. <if test="companyOpenbankAcc != null" >
  172. company_openbank_acc,
  173. </if>
  174. <if test="companyAdress != null" >
  175. company_adress,
  176. </if>
  177. <if test="companyPhone != null" >
  178. company_phone,
  179. </if>
  180. <if test="createtime != null" >
  181. createTime,
  182. </if>
  183. <if test="companyBelongName != null" >
  184. company_belong_name,
  185. </if>
  186. <if test="recStatus != null" >
  187. rec_status,
  188. </if>
  189. <if test="interType != null" >
  190. inter_type,
  191. </if>
  192. </trim>
  193. <trim prefix="values (" suffix=")" suffixOverrides="," >
  194. <if test="id != null" >
  195. #{id,jdbcType=INTEGER},
  196. </if>
  197. <if test="companyLeader != null" >
  198. #{companyLeader,jdbcType=VARCHAR},
  199. </if>
  200. <if test="companyLeaderPhone != null" >
  201. #{companyLeaderPhone,jdbcType=VARCHAR},
  202. </if>
  203. <if test="companyName != null" >
  204. #{companyName,jdbcType=VARCHAR},
  205. </if>
  206. <if test="companyReferencenum != null" >
  207. #{companyReferencenum,jdbcType=VARCHAR},
  208. </if>
  209. <if test="companyOpenbank != null" >
  210. #{companyOpenbank,jdbcType=VARCHAR},
  211. </if>
  212. <if test="companyOpenbankAcc != null" >
  213. #{companyOpenbankAcc,jdbcType=VARCHAR},
  214. </if>
  215. <if test="companyAdress != null" >
  216. #{companyAdress,jdbcType=VARCHAR},
  217. </if>
  218. <if test="companyPhone != null" >
  219. #{companyPhone,jdbcType=VARCHAR},
  220. </if>
  221. <if test="createtime != null" >
  222. #{createtime,jdbcType=TIMESTAMP},
  223. </if>
  224. <if test="companyBelongName != null" >
  225. #{companyBelongName,jdbcType=VARCHAR},
  226. </if>
  227. <if test="recStatus != null" >
  228. #{recStatus,jdbcType=INTEGER},
  229. </if>
  230. <if test="interType != null" >
  231. #{interType,jdbcType=INTEGER},
  232. </if>
  233. </trim>
  234. </insert>
  235. <update id="updateByPrimaryKeySelective" parameterType="com.jkcredit.invoice.model.entity.customer.CustomerRec" >
  236. update t_customer_rec
  237. <set >
  238. <if test="companyLeader != null" >
  239. company_leader = #{companyLeader,jdbcType=VARCHAR},
  240. </if>
  241. <if test="companyLeaderPhone != null" >
  242. company_leader_Phone = #{companyLeaderPhone,jdbcType=VARCHAR},
  243. </if>
  244. <if test="companyName != null" >
  245. company_name = #{companyName,jdbcType=VARCHAR},
  246. </if>
  247. <if test="companyReferencenum != null" >
  248. company_referenceNum = #{companyReferencenum,jdbcType=VARCHAR},
  249. </if>
  250. <if test="companyOpenbank != null" >
  251. company_openbank = #{companyOpenbank,jdbcType=VARCHAR},
  252. </if>
  253. <if test="companyOpenbankAcc != null" >
  254. company_openbank_acc = #{companyOpenbankAcc,jdbcType=VARCHAR},
  255. </if>
  256. <if test="companyAdress != null" >
  257. company_adress = #{companyAdress,jdbcType=VARCHAR},
  258. </if>
  259. <if test="companyPhone != null" >
  260. company_phone = #{companyPhone,jdbcType=VARCHAR},
  261. </if>
  262. <if test="createtime != null" >
  263. createTime = #{createtime,jdbcType=TIMESTAMP},
  264. </if>
  265. <if test="companyBelongName != null" >
  266. company_belong_name = #{companyBelongName,jdbcType=VARCHAR},
  267. </if>
  268. <if test="recStatus != null" >
  269. rec_status = #{recStatus,jdbcType=INTEGER},
  270. </if>
  271. <if test="interType != null" >
  272. inter_type = #{interType,jdbcType=INTEGER},
  273. </if>
  274. <if test="bussinessType != null" >
  275. bussiness_type = #{bussinessType,jdbcType=INTEGER},
  276. </if>
  277. <if test="companyType != null" >
  278. company_type = #{companyType,jdbcType=INTEGER},
  279. </if>
  280. <if test="operatingRangeType != null" >
  281. operating_rangeType = #{operatingRangeType,jdbcType=INTEGER},
  282. </if>
  283. <if test="companyNum != null" >
  284. company_num = #{companyNum,jdbcType=VARCHAR},
  285. </if>
  286. <if test="serviceStartTime != null" >
  287. service_startTime = #{serviceStartTime,jdbcType=VARCHAR},
  288. </if>
  289. <if test="serviceEndTime != null" >
  290. service_endTime = #{serviceEndTime,jdbcType=VARCHAR},
  291. </if>
  292. <if test="serviceType != null" >
  293. service_type = #{serviceType,jdbcType=INTEGER},
  294. </if>
  295. <if test="contractFileName != null" >
  296. contractFileName = #{contractFileName,jdbcType=VARCHAR},
  297. </if>
  298. <if test="base64Str != null" >
  299. base64Str = #{base64Str,jdbcType=VARCHAR},
  300. </if>
  301. <if test="contractSuc != null" >
  302. contractSuc = #{contractSuc,jdbcType=INTEGER},
  303. </if>
  304. <if test="contrantNum != null" >
  305. contrantNum = #{contrantNum,jdbcType=VARCHAR},
  306. </if>
  307. <if test="lowerFileName != null" >
  308. lowerFileName = #{lowerFileName,jdbcType=VARCHAR},
  309. </if>
  310. <if test="lowerBase64Str != null" >
  311. lowerBase64Str = #{lowerBase64Str,jdbcType=VARCHAR},
  312. </if>
  313. </set>
  314. where id = #{id,jdbcType=INTEGER}
  315. </update>
  316. <update id="updateByPrimaryKey" parameterType="com.jkcredit.invoice.model.entity.customer.CustomerRec" >
  317. update t_customer_rec
  318. set company_leader = #{companyLeader,jdbcType=VARCHAR},
  319. company_leader_Phone = #{companyLeaderPhone,jdbcType=VARCHAR},
  320. company_name = #{companyName,jdbcType=VARCHAR},
  321. company_referenceNum = #{companyReferencenum,jdbcType=VARCHAR},
  322. company_openbank = #{companyOpenbank,jdbcType=VARCHAR},
  323. company_openbank_acc = #{companyOpenbankAcc,jdbcType=VARCHAR},
  324. company_adress = #{companyAdress,jdbcType=VARCHAR},
  325. company_phone = #{companyPhone,jdbcType=VARCHAR},
  326. createTime = #{createtime,jdbcType=TIMESTAMP},
  327. company_belong_name = #{companyBelongName,jdbcType=VARCHAR},
  328. rec_status = #{recStatus,jdbcType=INTEGER},
  329. inter_type = #{interType,jdbcType=INTEGER},
  330. bussiness_type = #{bussinessType,jdbcType=INTEGER},
  331. company_type = #{companyType,jdbcType=INTEGER},
  332. operating_rangeType = #{operatingRangeType,jdbcType=INTEGER},
  333. company_num = #{companyNum,jdbcType=VARCHAR},
  334. service_startTime = #{serviceStartTime,jdbcType=VARCHAR},
  335. service_endTime = #{serviceEndTime,jdbcType=VARCHAR},
  336. service_type = #{serviceType,jdbcType=INTEGER},
  337. contractFileName = #{contractFileName,jdbcType=VARCHAR},
  338. base64Str = #{base64Str,jdbcType=VARCHAR},
  339. contractSuc = #{contractSuc,jdbcType=INTEGER},
  340. contrantNum = #{contrantNum,jdbcType=VARCHAR}
  341. where id = #{id,jdbcType=INTEGER}
  342. </update>
  343. </mapper>