|  |  | @@ -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=")"> | 
		
	
	
		
			
				|  |  | 
 |