Преглед изворни кода

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

release_toaliyun_real
Stormeye.Wu пре 7 година
родитељ
комит
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="cert_path" jdbcType="VARCHAR" property="certPath"/>
<result column="type" jdbcType="INTEGER" property="type"/> <result column="type" jdbcType="INTEGER" property="type"/>
<result column="share" jdbcType="INTEGER" property="share"/> <result column="share" jdbcType="INTEGER" property="share"/>
<result column="rate" jdbcType="INTEGER" property="rate"/>
</resultMap> </resultMap>


<sql id="allColumns"> <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>


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


Loading…
Откажи
Сачувај