Просмотр исходного кода

[分账][修复]:手续费问题

release_toaliyun_real
Stormeye.Wu 7 лет назад
Родитель
Сommit
000e3b6167
1 измененных файлов: 5 добавлений и 1 удалений
  1. +5
    -1
      mallinkService/src/main/resources/mapper/WxPayAccountMapper.xml

+ 5
- 1
mallinkService/src/main/resources/mapper/WxPayAccountMapper.xml Просмотреть файл

@@ -10,10 +10,11 @@
<result column="cert_path" jdbcType="VARCHAR" property="certPath"/>
<result column="type" jdbcType="INTEGER" property="type"/>
<result column="share" jdbcType="INTEGER" property="share"/>
<result column="rate" jdbcType="INTEGER" property="rate"/>
</resultMap>

<sql id="allColumns">
`id`,`mch_id`,`parent_mch_id`,`api_key`,`notify_url`,`cert_path`,`type`,`share`
`id`,`mch_id`,`parent_mch_id`,`api_key`,`notify_url`,`cert_path`,`type`,`share`,`rate`
</sql>

<sql id="dynamicWhereConditions">
@@ -48,6 +49,9 @@
<if test=" null != share ">
and `share` = #{share}
</if>
<if test=" null != rate ">
and `rate` = #{rate}
</if>
<if test=" null != ids ">
and id in
<foreach collection="ids" index="index" item="idItem" open="(" separator="," close=")">


Загрузка…
Отмена
Сохранить