forked from free-lancers/electricity_bill_calc_service
feat(invoice):基本完成商户发票记录功能,待测。
This commit is contained in:
@@ -25,3 +25,15 @@ type InvoiceCreationForm struct {
|
||||
TaxRate decimal.NullDecimal `json:"taxRate"`
|
||||
Covers []string `json:"covers"`
|
||||
}
|
||||
|
||||
type ExtendedInvoiceResponse struct {
|
||||
InvoiceResponse
|
||||
Cargos []*model.InvoiceCargo `json:"cargos"`
|
||||
Covers []*model.SimplifiedTenementCharge `json:"covers"`
|
||||
}
|
||||
|
||||
type ExtendedInvoiceCreationForm struct {
|
||||
InvoiceCreationForm
|
||||
InvoiceType *string `json:"invoiceType"`
|
||||
InvoiceNo string `json:"invoiceNo"`
|
||||
}
|
||||
|
Reference in New Issue
Block a user