update_withdraw_payment_info.go 1.0 KB

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