withdraw_create_payment_info.go 964 B

12345678910111213141516171819202122232425
  1. package http_model
  2. type CreateWithdrawPaymentInfoRequest struct {
  3. BankName string `json:"bank_name"` // 开户银行
  4. BankNumber string `json:"bank_number"` // 银行账户
  5. Company string `json:"company"` // 服务商企业名称
  6. SupplierID int `json:"supplier_id"` // 服务商ID
  7. Name string `json:"name"` // 个人服务商姓名
  8. IDNumber string `json:"id_number"` // 个人服务商身份证号码
  9. Phone string `json:"phone"` // 个人服务商银行预留手机号码
  10. SupplierType int `json:"supplier_type"` // 服务商类型,1个人,2机构
  11. }
  12. type CreateWithdrawPaymentInfoData struct {
  13. }
  14. func NewCreateWithdrawPaymentInfoRequest() *CreateWithdrawPaymentInfoRequest {
  15. return new(CreateWithdrawPaymentInfoRequest)
  16. }
  17. func NewCreateWithdrawPaymentInfoResponse() *CommonResponse {
  18. resp := new(CommonResponse)
  19. resp.Data = new(CreateWithdrawPaymentInfoData)
  20. return resp
  21. }