create_supplier_invoice.go 467 B

12345678910111213141516
  1. package http_model
  2. type CreateSupplierInvoiceRequest struct {
  3. SupplierId int `json:"supplier_id"` // 服务商ID
  4. IncomeIds string `json:"income_ids"` // 收入ID列表
  5. SubAccountId int `json:"sub_account_id"` // 子账号ID
  6. }
  7. func NewCreateSupplierInvoiceRequest() *CreateSupplierInvoiceRequest {
  8. return new(CreateSupplierInvoiceRequest)
  9. }
  10. func NewCreateSupplierInvoiceResponse() *CommonResponse {
  11. resp := new(CommonResponse)
  12. return resp
  13. }