create_supplier_withdraw.go 777 B

12345678910111213141516171819202122232425
  1. package http_model
  2. type CreateSupplierWithdrawRequest struct {
  3. SupplierId int `json:"supplier_id"` // 服务商ID
  4. CreateSupplierWithdrawList []SupplierWithdraw `json:"create_supplier_withdraw_list"` // 回票List
  5. }
  6. type SupplierWithdraw struct {
  7. InvoiceId int `json:"invoice_id"` // 回票ID
  8. BankName string `json:"bank_name"` // 开户银行
  9. BankNumber string `json:"bank_number"` // 银行卡号
  10. }
  11. type CreateSupplierWithdrawData struct {
  12. }
  13. func NewCreateSupplierWithdrawRequest() *CreateSupplierWithdrawRequest {
  14. return new(CreateSupplierWithdrawRequest)
  15. }
  16. func NewCreateSupplierWithdrawResponse() *CommonResponse {
  17. resp := new(CommonResponse)
  18. resp.Data = new(CreateSupplierWithdrawData)
  19. return resp
  20. }