Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.
 
 
 
 
 

111 lignes
5.6 KiB

  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.iformall.mapper.WxBillOtherDepositMapper">
  4. <resultMap id="BaseResultMap" type="com.iformall.domain.po.WxBillOtherDeposit">
  5. <id column="id" jdbcType="BIGINT" property="id"/>
  6. <result column="receive_pay" jdbcType="BIGINT" property="receivePay"/>
  7. <result column="pay" jdbcType="BIGINT" property="pay"/>
  8. <result column="receive_date" jdbcType="TIMESTAMP" property="receiveDate"/>
  9. <result column="pay_date" jdbcType="TIMESTAMP" property="payDate"/>
  10. <result column="createtime" jdbcType="TIMESTAMP" property="createtime"/>
  11. <result column="expired_day" jdbcType="INTEGER" property="expiredDay"/>
  12. <result column="tenant_id" jdbcType="VARCHAR" property="tenantId"/>
  13. <result column="owe" jdbcType="BIGINT" property="owe"/>
  14. <result column="status" jdbcType="INTEGER" property="status"/>
  15. <result column="is_del" jdbcType="INTEGER" property="isDel"/>
  16. <result column="merchant_id" jdbcType="BIGINT" property="merchantId"/>
  17. <result column="user_id" jdbcType="BIGINT" property="userId"/>
  18. <result column="shop_id" jdbcType="BIGINT" property="shopId"/>
  19. <result column="updatetime" jdbcType="TIMESTAMP" property="updatetime"/>
  20. <result column="name" jdbcType="VARCHAR" property="name"/>
  21. <result column="comments" jdbcType="VARCHAR" property="comments"/>
  22. <result column="rent_shop_type" jdbcType="INTEGER" property="rentShopType"/>
  23. <result column="return_price" jdbcType="BIGINT" property="returnPrice"/>
  24. <result column="pay_way" jdbcType="INTEGER" property="payWay"/>
  25. <result column="merchant_name" property="merchantName"/>
  26. <result column="starttime" property="starttime"/>
  27. <result column="endtime" property="endtime"/>
  28. </resultMap>
  29. <sql id="allColumns">
  30. `id`,`receive_pay`,`pay`,`receive_date`,`pay_date`,`createtime`,`expired_day`,
  31. `tenant_id`,`owe`,`status`,`is_del`,`merchant_id`,`user_id`,`shop_id`,`updatetime`,`name`,`comments`,
  32. `rent_shop_type`,`return_price`,`pay_way`,`starttime`,`endtime`
  33. </sql>
  34. <sql id="dynamicWhereConditions">
  35. where 1 = 1
  36. <if test=" null != id ">and `id` = #{id}</if>
  37. <if test=" null != receivePay ">and `receive_pay` = #{receivePay}</if>
  38. <if test=" null != pay ">and `pay` = #{pay}</if>
  39. <if test=" null != receiveDate ">and `receive_date` = #{receiveDate}</if>
  40. <if test=" null != payDate ">and `pay_date` = #{payDate}</if>
  41. <if test=" null != createtime ">and `createtime` = #{createtime}</if>
  42. <if test=" null != expiredDay ">and `expired_day` = #{expiredDay}</if>
  43. <if test=" null != tenantId ">and `tenant_id` = #{tenantId}</if>
  44. <if test=" null != owe ">and `owe` = #{owe}</if>
  45. <if test=" null != status ">and `status` = #{status}</if>
  46. <if test=" null != isDel ">and `is_del` = #{isDel}</if>
  47. <if test=" null != merchantId ">and `merchant_id` = #{merchantId}</if>
  48. <if test=" null != userId ">and `user_id` = #{userId}</if>
  49. <if test=" null != shopId ">and `shop_id` = #{shopId}</if>
  50. <if test=" null != updatetime ">and `updatetime` = #{updatetime}</if>
  51. <if test=" null != name ">and `name` = #{name}</if>
  52. <if test=" null != rentShopType ">and `rent_shop_type` = #{rentShopType}</if>
  53. <if test=" null != payWay ">and `pay_way` = #{payWay}</if>
  54. <if test=" null != ids ">
  55. and id in
  56. <foreach collection="ids" index="index" item="idItem" open="(" separator="," close=")">
  57. #{idItem}
  58. </foreach>
  59. </if>
  60. <if test=" null != sortColumns">order by ${sortColumns}</if>
  61. </sql>
  62. <select id="findList" parameterType="com.iformall.domain.po.WxBillOtherDeposit" resultMap="BaseResultMap">
  63. select
  64. <include refid="allColumns"/>
  65. from wx_bill_other_deposit
  66. <include refid="dynamicWhereConditions"/>
  67. </select>
  68. <select id="queryBillList" parameterType="com.iformall.domain.po.WxBillOtherDeposit" resultMap="BaseResultMap">
  69. select br.`id`,br.`receive_pay`,br.`pay`,br.`receive_date`,br.`pay_date`,br.`createtime`,br.`expired_day`,
  70. br.`owe`,br.`status`,m.`name` merchant_name,s.shop_number,br.`updatetime`,br.`return_price`,br.`merchant_id`,
  71. br.shop_id,br.name,br.comments,br.`rent_shop_type`,br.pay_way,br.`starttime`,br.`endtime`
  72. from wx_bill_other_deposit br left join wx_merchant m on br.merchant_id=m.id
  73. left join wx_shop s on br.shop_id=s.id
  74. <where>
  75. <if test=" null != id ">and br.`id` = #{id}</if>
  76. <if test=" null != merchantId ">and br.`merchant_id` = #{merchantId}</if>
  77. <if test=" null != merchantName and ''!=merchantName ">and m.`name` like concat('%',#{merchantName},'%')
  78. </if>
  79. <if test=" null != status ">and br.`status` = #{status}</if>
  80. <if test=" null != isDel ">and br.`is_del` = #{isDel}</if>
  81. <if test=" null != name and ''!=name">and br.`name` = #{name}</if>
  82. <if test=" null != rentShopType ">and br.`rent_shop_type` = #{rentShopType}</if>
  83. <if test=" null != payWay ">and br.`pay_way` = #{payWay}</if>
  84. <if test=" null != comments and ''!=comments">and br.`comments` like concat('%',#{comments},'%')</if>
  85. </where>
  86. <if test=" null != sortColumns"> order by ${sortColumns} </if>
  87. <if test=" null == sortColumns"> order by id desc </if>
  88. </select>
  89. <update id="updateNotPaidStatus" parameterType="hashmap">
  90. update wx_bill_other_deposit set status=#{notPaid},expired_day=DATEDIFF(now(),receive_date)
  91. where tenant_id=#{tenantId} and status!=#{paid} and status!=5 and DATEDIFF(now(),receive_date)>0
  92. </update>
  93. <update id="updateWaitPayStatus" parameterType="hashmap">
  94. update wx_bill_other_deposit set status=#{waitPay} where tenant_id=#{tenantId} and status!=5
  95. and status!=#{paid} and DATEDIFF(now(),receive_date) &lt;=0
  96. </update>
  97. </mapper>