| @@ -17,6 +17,7 @@ | |||||
| <result column="pay_id" jdbcType="BIGINT" property="payId"/> | <result column="pay_id" jdbcType="BIGINT" property="payId"/> | ||||
| <result column="type" jdbcType="INTEGER" property="type"/> | <result column="type" jdbcType="INTEGER" property="type"/> | ||||
| <result column="pay_bill_id" jdbcType="BIGINT" property="payBillId"/> | <result column="pay_bill_id" jdbcType="BIGINT" property="payBillId"/> | ||||
| <result column="plat" jdbcType="INTEGER" property="plat"/> | |||||
| <!-- <result column="group_support" jdbcType="INTEGER" property="groupSupport"/>--> | <!-- <result column="group_support" jdbcType="INTEGER" property="groupSupport"/>--> | ||||
| </resultMap> | </resultMap> | ||||
| @@ -24,7 +25,7 @@ | |||||
| <sql id="allColumns"> | <sql id="allColumns"> | ||||
| `id`,`tenant_id`,`app_id`,`parent_app_id`,`name`, | `id`,`tenant_id`,`app_id`,`parent_app_id`,`name`, | ||||
| `secret`,`token`,`aes_key`,`msg_data_format`,`access_token`,`last_token_time`,`expires_in`, | `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> | ||||
| <sql id="dynamicWhereConditions"> | <sql id="dynamicWhereConditions"> | ||||
| @@ -86,6 +87,9 @@ | |||||
| <if test=" null != payBillId "> | <if test=" null != payBillId "> | ||||
| and `pay_bill_id` = #{payBillId} | and `pay_bill_id` = #{payBillId} | ||||
| </if> | </if> | ||||
| <if test=" null != plat "> | |||||
| and `plat` = #{plat} | |||||
| </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=")"> | ||||