Commit 86f40edc by chongli

根据订单号查询

parent a4d79906
......@@ -32,7 +32,10 @@ public class InvoiceRequestQuery extends AbstractPagedQuery {
* 申请处理状态
*/
private Integer status;
/**
* 订单号
*/
private String orderNo;
@DateTimeFormat(pattern = "yyyy-MM-dd")
private Date createTimeStart;
......@@ -89,4 +92,12 @@ public class InvoiceRequestQuery extends AbstractPagedQuery {
this.status = status;
}
public String getOrderNo() {
return orderNo;
}
public void setOrderNo(String orderNo) {
this.orderNo = orderNo;
}
}
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 sign in to comment