Commit 1f94a2db by jinxin

许可账号列表新增订单类型查询

parent 0a330f58
...@@ -74,6 +74,18 @@ public class LicenceOrderPageQDTO extends BasePageInfo implements Serializable ...@@ -74,6 +74,18 @@ public class LicenceOrderPageQDTO extends BasePageInfo implements Serializable
* 1 好办后台 0 运维后台 * 1 好办后台 0 运维后台
*/ */
private Integer type; private Integer type;
/**
* 订单类型,1:购买帐号,2:续期帐号
*/
private Integer orderType;
public Integer getOrderType() {
return orderType;
}
public void setOrderType(Integer orderType) {
this.orderType = orderType;
}
public Integer getType() { public Integer getType() {
return type; return type;
......
...@@ -60,5 +60,9 @@ public class LicenceOrderPageQO extends BasePageInfo implements Serializable { ...@@ -60,5 +60,9 @@ public class LicenceOrderPageQO extends BasePageInfo implements Serializable {
* 微信订单id * 微信订单id
*/ */
private String wxOrderId; private String wxOrderId;
/**
* 订单类型,1:购买帐号,2:续期帐号
*/
private Integer orderType;
} }
...@@ -250,6 +250,9 @@ ...@@ -250,6 +250,9 @@
<if test="type != null and type ==1 "> <if test="type != null and type ==1 ">
and wx_enterprise_id = #{wxEnterpriseId} and wx_enterprise_id = #{wxEnterpriseId}
</if> </if>
<if test="orderType != null">
and order_type = #{orderType}
</if>
order by create_time desc order by create_time desc
</select> </select>
......
...@@ -48,5 +48,9 @@ public class LicenceOrderPageQO extends BasePageInfo implements Serializable { ...@@ -48,5 +48,9 @@ public class LicenceOrderPageQO extends BasePageInfo implements Serializable {
* 订单创建结束时间 * 订单创建结束时间
*/ */
private String endTime; private String endTime;
/**
* 订单类型,1:购买帐号,2:续期帐号
*/
private Integer orderType;
} }
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