CustomerRecMapper.xml 13 KB

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