CustomerRechargeMapper.xml 5.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144
  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.CustomerRechargeMapper" >
  4. <resultMap id="BaseResultMap" type="com.jkcredit.invoice.model.entity.CustomerRecharge" >
  5. <id column="id" property="id" jdbcType="INTEGER" />
  6. <result column="customer_name" property="customerName" jdbcType="VARCHAR" />
  7. <result column="companyName" property="companyName" jdbcType="VARCHAR" />
  8. <result column="before_money" property="beforeMony" jdbcType="DOUBLE" />
  9. <result column="recharge_mony" property="rechargeMony" jdbcType="DOUBLE" />
  10. <result column="recharge_time" property="rechargeTime" jdbcType="VARCHAR" />
  11. </resultMap>
  12. <sql id="Base_Column_List" >
  13. id, customer_name,companyName, before_money, recharge_mony, recharge_time
  14. </sql>
  15. <select id="selectAllByPage" resultMap="BaseResultMap">
  16. select
  17. <include refid="Base_Column_List" />
  18. from t_customer_recharge
  19. <where>
  20. <if test="customerRecharge.customerName != null and customerRecharge.customerName != ''">
  21. and customer_name LIKE CONCAT('%',#{customerRecharge.customerName},'%')
  22. </if>
  23. <if test="customerRecharge.companyName != null and customerRecharge.companyName != ''">
  24. and companyName LIKE CONCAT('%',#{customerRecharge.companyName},'%')
  25. </if>
  26. <if test="customerRecharge.rechargeMony != null and customerRecharge.rechargeMony != ''">
  27. and recharge_mony = #{rechargeMony,jdbcType=DOUBLE}
  28. </if>
  29. </where>
  30. order by recharge_time desc
  31. </select>
  32. <select id="selectAllByPageMoney" resultMap="BaseResultMap">
  33. select
  34. <include refid="Base_Column_List" />
  35. from t_customer_recharge
  36. <where>
  37. 1 = 1
  38. <if test="customerRecharge.customerName != null and customerRecharge.customerName != ''">
  39. and customer_name LIKE CONCAT('%',#{customerRecharge.customerName},'%')
  40. </if>
  41. <if test="customerRecharge.companyName != null and customerRecharge.companyName != ''">
  42. and companyName LIKE CONCAT('%',#{customerRecharge.companyName},'%')
  43. </if>
  44. <if test="customerRecharge.rechargeMony != null and customerRecharge.rechargeMony != ''">
  45. and recharge_mony = #{rechargeMony,jdbcType=DOUBLE}
  46. </if>
  47. and recharge_mony <![CDATA[ > ]]> 0
  48. </where>
  49. order by recharge_time desc
  50. </select>
  51. <select id="selectByPrimaryKey" resultMap="BaseResultMap" parameterType="java.lang.Integer" >
  52. select
  53. <include refid="Base_Column_List" />
  54. from t_customer_recharge
  55. where id = #{id,jdbcType=INTEGER}
  56. </select>
  57. <delete id="deleteByPrimaryKey" parameterType="java.lang.Integer" >
  58. delete from t_customer_recharge
  59. where id = #{id,jdbcType=INTEGER}
  60. </delete>
  61. <insert id="insert" parameterType="com.jkcredit.invoice.model.entity.CustomerRecharge" >
  62. insert into t_customer_recharge ( customer_name,companyName, before_money,recharge_mony,
  63. recharge_time)
  64. values ( #{customerName,jdbcType=VARCHAR}, #{companyName,jdbcType=VARCHAR}, #{beforeMony,jdbcType=DOUBLE}, #{rechargeMony,jdbcType=DOUBLE},
  65. #{rechargeTime,jdbcType=VARCHAR})
  66. </insert>
  67. <insert id="insertSelective" parameterType="com.jkcredit.invoice.model.entity.CustomerRecharge" >
  68. insert into t_customer_recharge
  69. <trim prefix="(" suffix=")" suffixOverrides="," >
  70. <if test="id != null" >
  71. id,
  72. </if>
  73. <if test="customerName != null" >
  74. customer_name,
  75. </if>
  76. <if test="companyName != null" >
  77. companyName,
  78. </if>
  79. <if test="beforeMony != null" >
  80. before_money,
  81. </if>
  82. <if test="rechargeMony != null" >
  83. recharge_mony,
  84. </if>
  85. <if test="rechargeTime != null" >
  86. recharge_time,
  87. </if>
  88. </trim>
  89. <trim prefix="values (" suffix=")" suffixOverrides="," >
  90. <if test="id != null" >
  91. #{id,jdbcType=INTEGER},
  92. </if>
  93. <if test="customerName != null" >
  94. #{customerName,jdbcType=VARCHAR},
  95. </if>
  96. <if test="companyName != null" >
  97. #{companyName,jdbcType=VARCHAR},
  98. </if>
  99. <if test="beforeMony != null" >
  100. #{before_money,jdbcType=DOUBLE},
  101. </if>
  102. <if test="rechargeMony != null" >
  103. #{rechargeMony,jdbcType=DOUBLE},
  104. </if>
  105. <if test="rechargeTime != null" >
  106. #{rechargeTime,jdbcType=VARCHAR},
  107. </if>
  108. </trim>
  109. </insert>
  110. <update id="updateByPrimaryKeySelective" parameterType="com.jkcredit.invoice.model.entity.CustomerRecharge" >
  111. update t_customer_recharge
  112. <set >
  113. <if test="customerName != null" >
  114. customer_name = #{customerName,jdbcType=VARCHAR},
  115. </if>
  116. <if test="companyName != null" >
  117. companyName = #{companyName,jdbcType=VARCHAR},
  118. </if>
  119. <if test="beforeMony != null" >
  120. before_money = #{beforeMony,jdbcType=DOUBLE},
  121. </if>
  122. <if test="rechargeMony != null" >
  123. recharge_mony = #{rechargeMony,jdbcType=DOUBLE},
  124. </if>
  125. <if test="rechargeTime != null" >
  126. recharge_time = #{rechargeTime,jdbcType=VARCHAR},
  127. </if>
  128. </set>
  129. where id = #{id,jdbcType=INTEGER}
  130. </update>
  131. <update id="updateByPrimaryKey" parameterType="com.jkcredit.invoice.model.entity.CustomerRecharge" >
  132. update t_customer_recharge
  133. set customer_name = #{customerName,jdbcType=VARCHAR},
  134. companyName = #{companyName,jdbcType=VARCHAR},
  135. before_money = #{beforeMony,jdbcType=DOUBLE},
  136. recharge_mony = #{rechargeMony,jdbcType=DOUBLE},
  137. recharge_time = #{rechargeTime,jdbcType=VARCHAR}
  138. where id = #{id,jdbcType=INTEGER}
  139. </update>
  140. </mapper>