Browse Source

pay

master
xhxu 2 years ago
parent
commit
049fc0f4b6
2 changed files with 1 additions and 7 deletions
  1. +0
    -2
      mallinkService/src/main/java/com/iformall/domain/po/WxAppinfo.java
  2. +1
    -5
      mallinkService/src/main/resources/mapper/WxAppinfoMapper.xml

+ 0
- 2
mallinkService/src/main/java/com/iformall/domain/po/WxAppinfo.java View File

@@ -41,7 +41,5 @@ public class WxAppinfo extends BaseEntity {
private Integer type;
@io.swagger.annotations.ApiModelProperty(value="平台",name="plat")
private Integer plat;
@io.swagger.annotations.ApiModelProperty(value="支付ID,参看wx_pay_account_bill",name="payBillId")
private Long payBillId;

}

+ 1
- 5
mallinkService/src/main/resources/mapper/WxAppinfoMapper.xml View File

@@ -17,12 +17,11 @@
<result column="pay_id" jdbcType="BIGINT" property="payId"/>
<result column="type" jdbcType="INTEGER" property="type"/>
<result column="plat" jdbcType="INTEGER" property="plat"/>
<result column="pay_bill_id" jdbcType="BIGINT" property="payBillId"/>

</resultMap>

<sql id="allColumns">
`id`,`tenant_id`,`app_id`,`parent_app_id`,`name`,`secret`,`token`,`aes_key`,`msg_data_format`,`access_token`,`last_token_time`,`expires_in`,`pay_id`,`type`,`plat`,`pay_bill_id`
`id`,`tenant_id`,`app_id`,`parent_app_id`,`name`,`secret`,`token`,`aes_key`,`msg_data_format`,`access_token`,`last_token_time`,`expires_in`,`pay_id`,`type`,`plat`
</sql>

<sql id="dynamicWhereConditions">
@@ -84,9 +83,6 @@
<if test=" null != plat ">
and `plat` = #{plat}
</if>
<if test=" null != payBillId ">
and `pay_bill_id` = #{payBillId}
</if>
<if test=" null != ids ">
and id in
<foreach collection="ids" index="index" item="idItem" open="(" separator="," close=")">


Loading…
Cancel
Save