Commit 145f99c3 by guojuxing

发票管理接口

parent e0011f8d
......@@ -83,6 +83,12 @@ public class BillingPayInfoController {
return RestResponse.success();
}
@RequestMapping("/apply-invoice")
public RestResponse applyInvoice(Integer invoiceManageId) {
//todo 调用开票取消
return RestResponse.success();
}
/**
* 已申请开票单据列表
* @Title: listInvoice

......
......@@ -48,6 +48,10 @@ public class InvoiceListVO implements Serializable {
* 快递单号
*/
private String expressMailNumber;
/**
* 驳回理由
*/
private String rejectReason;
public Integer getInvoiceManageId() {
return invoiceManageId;
......@@ -120,4 +124,12 @@ public class InvoiceListVO implements Serializable {
public void setExpressMailNumber(String expressMailNumber) {
this.expressMailNumber = expressMailNumber;
}
public String getRejectReason() {
return rejectReason;
}
public void setRejectReason(String rejectReason) {
this.rejectReason = rejectReason;
}
}
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