create_supplier_invoice.go 539 B

1234567891011121314151617
  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. SOperatorType int `json:"s_operator_type"` // 操作人类型
  7. }
  8. func NewCreateSupplierInvoiceRequest() *CreateSupplierInvoiceRequest {
  9. return new(CreateSupplierInvoiceRequest)
  10. }
  11. func NewCreateSupplierInvoiceResponse() *CommonResponse {
  12. resp := new(CommonResponse)
  13. return resp
  14. }