|
@@ -9,6 +9,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
|
|
<result property="goodsName" column="goods_name" />
|
|
|
<result property="userId" column="user_id" />
|
|
|
<result property="userName" column="user_name" />
|
|
|
+ <result property="logincode" column="logincode" />
|
|
|
<result property="outTradeNo" column="out_trade_no" />
|
|
|
<result property="outRefundNo" column="out_refund_no" />
|
|
|
<result property="refundReason" column="refund_reason" />
|
|
@@ -42,6 +43,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
|
|
<where>
|
|
|
<if test="userId!=null"> and user_id = #{userId}</if>
|
|
|
<if test="userName!=null and userName!=''"> and w.user_name = #{userName}</if>
|
|
|
+ <if test="logincode!=null and logincode!=''"> and w.logincode = #{logincode}</if>
|
|
|
<if test="outTradeNo != null and outTradeNo!=''"> and w.out_trade_no = #{outTradeNo}</if>
|
|
|
<if test="transactionId != null and transactionId != ''"> and w.transaction_id = #{transactionId}</if>
|
|
|
<if test="tradeType != null and tradeType != ''"> and w.trade_type = #{tradeType}</if>
|