xhxu hace 2 años
padre
commit
049fc0f4b6
Se han modificado 2 ficheros con 1 adiciones y 7 borrados
  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 Ver fichero

@@ -41,7 +41,5 @@ public class WxAppinfo extends BaseEntity {
private Integer type; private Integer type;
@io.swagger.annotations.ApiModelProperty(value="平台",name="plat") @io.swagger.annotations.ApiModelProperty(value="平台",name="plat")
private Integer 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 Ver fichero

@@ -17,12 +17,11 @@
<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="plat" jdbcType="INTEGER" property="plat"/> <result column="plat" jdbcType="INTEGER" property="plat"/>
<result column="pay_bill_id" jdbcType="BIGINT" property="payBillId"/>


</resultMap> </resultMap>


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


<sql id="dynamicWhereConditions"> <sql id="dynamicWhereConditions">
@@ -84,9 +83,6 @@
<if test=" null != plat "> <if test=" null != plat ">
and `plat` = #{plat} and `plat` = #{plat}
</if> </if>
<if test=" null != payBillId ">
and `pay_bill_id` = #{payBillId}
</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=")">


Cargando…
Cancelar
Guardar