CustomerMapper.xml 7.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200
  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.CustomerMapper" >
  4. <resultMap id="BaseResultMap" type="com.jkcredit.invoice.model.entity.customer.Customer" >
  5. <id column="id" property="id" jdbcType="INTEGER" />
  6. <result column="customer_name" property="customerName" jdbcType="VARCHAR" />
  7. <result column="invoice_time" property="invoiceTime" jdbcType="VARCHAR" />
  8. <result column="usenum_all" property="usenumAll" jdbcType="INTEGER" />
  9. <result column="usenum_interface" property="usenumInterface" jdbcType="INTEGER" />
  10. <result column="usenum_plat" property="usenumPlat" jdbcType="INTEGER" />
  11. <result column="account_balance" property="accountBalance" jdbcType="DOUBLE" />
  12. <result column="bussiness_type" property="bussinessType" jdbcType="INTEGER" />
  13. <result column="integration_type" property="integrationType" jdbcType="INTEGER" />
  14. <result column="first_sign" property="firstSign" jdbcType="VARCHAR" />
  15. <result column="accStatus" property="accstatus" jdbcType="INTEGER" />
  16. <result column="company" property="company" jdbcType="VARCHAR" />
  17. <result column="fee" property="fee" jdbcType="DOUBLE" />
  18. </resultMap>
  19. <sql id="Base_Column_List" >
  20. id, customer_name, invoice_time, usenum_all, usenum_interface, usenum_plat, account_balance,
  21. bussiness_type, integration_type, first_sign, accStatus, company,fee
  22. </sql>
  23. <select id="selectAllByPage" resultMap="BaseResultMap">
  24. select
  25. <include refid="Base_Column_List" />
  26. from t_customer
  27. </select>
  28. <select id="selectByPrimaryKey" resultMap="BaseResultMap" parameterType="java.lang.Integer" >
  29. select
  30. <include refid="Base_Column_List" />
  31. from t_customer
  32. where id = #{id,jdbcType=INTEGER}
  33. </select>
  34. <select id="selectByCustomerName" resultMap="BaseResultMap" parameterType="java.lang.String" >
  35. select
  36. <include refid="Base_Column_List" />
  37. from t_customer
  38. where customer_name = #{customerName,jdbcType=VARCHAR}
  39. </select>
  40. <delete id="deleteByPrimaryKey" parameterType="java.lang.Integer" >
  41. delete from t_customer
  42. where id = #{id,jdbcType=INTEGER}
  43. </delete>
  44. <insert id="insert" parameterType="com.jkcredit.invoice.model.entity.customer.Customer" >
  45. insert into t_customer (customer_name, invoice_time,
  46. usenum_all, usenum_interface, usenum_plat,
  47. account_balance, bussiness_type, integration_type,
  48. first_sign, accStatus, company,fee
  49. )
  50. values ( #{customerName,jdbcType=VARCHAR}, #{invoiceTime,jdbcType=TIMESTAMP},
  51. #{usenumAll,jdbcType=INTEGER}, #{usenumInterface,jdbcType=INTEGER}, #{usenumPlat,jdbcType=INTEGER},
  52. #{accountBalance,jdbcType=DOUBLE}, #{bussinessType,jdbcType=INTEGER}, #{integrationType,jdbcType=INTEGER},
  53. #{firstSign,jdbcType=VARCHAR}, #{accstatus,jdbcType=INTEGER}, #{company,jdbcType=VARCHAR},#{fee,jdbcType=DOUBLE}
  54. )
  55. </insert>
  56. <insert id="insertSelective" parameterType="com.jkcredit.invoice.model.entity.customer.Customer" >
  57. insert into t_customer
  58. <trim prefix="(" suffix=")" suffixOverrides="," >
  59. <if test="id != null" >
  60. id,
  61. </if>
  62. <if test="customerName != null" >
  63. customer_name,
  64. </if>
  65. <if test="invoiceTime != null" >
  66. invoice_time,
  67. </if>
  68. <if test="usenumAll != null" >
  69. usenum_all,
  70. </if>
  71. <if test="usenumInterface != null" >
  72. usenum_interface,
  73. </if>
  74. <if test="usenumPlat != null" >
  75. usenum_plat,
  76. </if>
  77. <if test="accountBalance != null" >
  78. account_balance,
  79. </if>
  80. <if test="bussinessType != null" >
  81. bussiness_type,
  82. </if>
  83. <if test="integrationType != null" >
  84. integration_type,
  85. </if>
  86. <if test="firstSign != null" >
  87. first_sign,
  88. </if>
  89. <if test="accstatus != null" >
  90. accStatus,
  91. </if>
  92. <if test="company != null" >
  93. company,
  94. </if>
  95. <if test="fee != null" >
  96. fee,
  97. </if>
  98. </trim>
  99. <trim prefix="values (" suffix=")" suffixOverrides="," >
  100. <if test="id != null" >
  101. #{id,jdbcType=INTEGER},
  102. </if>
  103. <if test="customerName != null" >
  104. #{customerName,jdbcType=VARCHAR},
  105. </if>
  106. <if test="invoiceTime != null" >
  107. #{invoiceTime,jdbcType=TIMESTAMP},
  108. </if>
  109. <if test="usenumAll != null" >
  110. #{usenumAll,jdbcType=INTEGER},
  111. </if>
  112. <if test="usenumInterface != null" >
  113. #{usenumInterface,jdbcType=INTEGER},
  114. </if>
  115. <if test="usenumPlat != null" >
  116. #{usenumPlat,jdbcType=INTEGER},
  117. </if>
  118. <if test="accountBalance != null" >
  119. #{accountBalance,jdbcType=DOUBLE},
  120. </if>
  121. <if test="bussinessType != null" >
  122. #{bussinessType,jdbcType=INTEGER},
  123. </if>
  124. <if test="integrationType != null" >
  125. #{integrationType,jdbcType=INTEGER},
  126. </if>
  127. <if test="firstSign != null" >
  128. #{firstSign,jdbcType=VARCHAR},
  129. </if>
  130. <if test="accstatus != null" >
  131. #{accstatus,jdbcType=INTEGER},
  132. </if>
  133. <if test="company != null" >
  134. #{company,jdbcType=VARCHAR},
  135. </if>
  136. <if test="company != null" >
  137. #{fee,jdbcType=DOUBLE},
  138. </if>
  139. </trim>
  140. </insert>
  141. <update id="updateByPrimaryKeySelective" parameterType="com.jkcredit.invoice.model.entity.customer.Customer" >
  142. update t_customer
  143. <set >
  144. <if test="customerName != null" >
  145. customer_name = #{customerName,jdbcType=VARCHAR},
  146. </if>
  147. <if test="invoiceTime != null" >
  148. invoice_time = #{invoiceTime,jdbcType=TIMESTAMP},
  149. </if>
  150. <if test="usenumAll != null" >
  151. usenum_all = #{usenumAll,jdbcType=INTEGER},
  152. </if>
  153. <if test="usenumInterface != null" >
  154. usenum_interface = #{usenumInterface,jdbcType=INTEGER},
  155. </if>
  156. <if test="usenumPlat != null" >
  157. usenum_plat = #{usenumPlat,jdbcType=INTEGER},
  158. </if>
  159. <if test="accountBalance != null" >
  160. account_balance = #{accountBalance,jdbcType=DOUBLE},
  161. </if>
  162. <if test="bussinessType != null" >
  163. bussiness_type = #{bussinessType,jdbcType=INTEGER},
  164. </if>
  165. <if test="integrationType != null" >
  166. integration_type = #{integrationType,jdbcType=INTEGER},
  167. </if>
  168. <if test="firstSign != null" >
  169. first_sign = #{firstSign,jdbcType=VARCHAR},
  170. </if>
  171. <if test="accstatus != null" >
  172. accStatus = #{accstatus,jdbcType=INTEGER},
  173. </if>
  174. <if test="company != null" >
  175. company = #{company,jdbcType=VARCHAR},
  176. </if>
  177. <if test="fee != null" >
  178. fee = #{fee,jdbcType=DOUBLE},
  179. </if>
  180. </set>
  181. where id = #{id,jdbcType=INTEGER}
  182. </update>
  183. <update id="updateByPrimaryKey" parameterType="com.jkcredit.invoice.model.entity.customer.Customer" >
  184. update t_customer
  185. set customer_name = #{customerName,jdbcType=VARCHAR},
  186. invoice_time = #{invoiceTime,jdbcType=TIMESTAMP},
  187. usenum_all = #{usenumAll,jdbcType=INTEGER},
  188. usenum_interface = #{usenumInterface,jdbcType=INTEGER},
  189. usenum_plat = #{usenumPlat,jdbcType=INTEGER},
  190. account_balance = #{accountBalance,jdbcType=DOUBLE},
  191. bussiness_type = #{bussinessType,jdbcType=INTEGER},
  192. integration_type = #{integrationType,jdbcType=INTEGER},
  193. first_sign = #{firstSign,jdbcType=VARCHAR},
  194. accStatus = #{accstatus,jdbcType=INTEGER},
  195. company = #{company,jdbcType=VARCHAR},
  196. fee = #{fee,jdbcType=DOUBLE}
  197. where id = #{id,jdbcType=INTEGER}
  198. </update>
  199. </mapper>