|
|
|
@@ -17,6 +17,7 @@ |
|
|
|
<result column="pay_id" jdbcType="BIGINT" property="payId"/> |
|
|
|
<result column="type" jdbcType="INTEGER" property="type"/> |
|
|
|
<result column="pay_bill_id" jdbcType="BIGINT" property="payBillId"/> |
|
|
|
<result column="plat" jdbcType="INTEGER" property="plat"/> |
|
|
|
<!-- <result column="group_support" jdbcType="INTEGER" property="groupSupport"/>--> |
|
|
|
|
|
|
|
</resultMap> |
|
|
|
@@ -24,7 +25,7 @@ |
|
|
|
<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`,`pay_bill_id` |
|
|
|
`pay_id`,`type`,`pay_bill_id`,`plat` |
|
|
|
</sql> |
|
|
|
|
|
|
|
<sql id="dynamicWhereConditions"> |
|
|
|
@@ -86,6 +87,9 @@ |
|
|
|
<if test=" null != payBillId "> |
|
|
|
and `pay_bill_id` = #{payBillId} |
|
|
|
</if> |
|
|
|
<if test=" null != plat "> |
|
|
|
and `plat` = #{plat} |
|
|
|
</if> |
|
|
|
<if test=" null != ids "> |
|
|
|
and id in |
|
|
|
<foreach collection="ids" index="index" item="idItem" open="(" separator="," close=")"> |
|
|
|
|