Commit 2698522d by jinxin

列表查询bug处理

parent 0e08d283
...@@ -66,6 +66,18 @@ public class LicenceOrderPageQDTO extends BasePageInfo implements Serializable ...@@ -66,6 +66,18 @@ public class LicenceOrderPageQDTO extends BasePageInfo implements Serializable
* gic商户查询id * gic商户查询id
*/ */
private String enterpriseIdParam; private String enterpriseIdParam;
/**
* 微信订单id
*/
private String wxOrderId;
public String getWxOrderId() {
return wxOrderId;
}
public void setWxOrderId(String wxOrderId) {
this.wxOrderId = wxOrderId;
}
public String getEnterpriseIdParam() { public String getEnterpriseIdParam() {
return enterpriseIdParam; return enterpriseIdParam;
......
...@@ -237,6 +237,9 @@ ...@@ -237,6 +237,9 @@
<if test="payType != null "> <if test="payType != null ">
and pay_type=#{payType} and pay_type=#{payType}
</if> </if>
<if test="wxOrderId != null and wxOrderId !='' ">
and wx_order_id=#{wxOrderId}
</if>
order by create_time desc order by create_time desc
</select> </select>
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment