Commit a9437629 by guojuxing

发票管理列表接口添加入参:发票类型

parent 3948d60b
......@@ -26,6 +26,10 @@ public class InvoiceManageListQueryQO extends PageQO implements Serializable{
* 平台类型 1:GIC 2:好办
*/
private Integer platformType;
/**
* 发票类型
*/
private Integer invoiceType;
public String getSearch() {
return search;
......@@ -50,4 +54,12 @@ public class InvoiceManageListQueryQO extends PageQO implements Serializable{
public void setPlatformType(Integer platformType) {
this.platformType = platformType;
}
public Integer getInvoiceType() {
return invoiceType;
}
public void setInvoiceType(Integer invoiceType) {
this.invoiceType = invoiceType;
}
}
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