package http_model type CreateWithdrawPaymentInfoRequest struct { BankName string `json:"bank_name"` // 开户银行 BankNumber string `json:"bank_number"` // 银行账户 Company string `json:"company"` // 服务商企业名称 SupplierID int `json:"supplier_id"` // 服务商ID Name string `json:"name"` // 个人服务商姓名 IDNumber string `json:"id_number"` // 个人服务商身份证号码 Phone string `json:"phone"` // 个人服务商银行预留手机号码 SupplierType int `json:"supplier_type"` // 服务商类型,1个人,2机构 } type CreateWithdrawPaymentInfoData struct { } func NewCreateWithdrawPaymentInfoRequest() *CreateWithdrawPaymentInfoRequest { return new(CreateWithdrawPaymentInfoRequest) } func NewCreateWithdrawPaymentInfoResponse() *CommonResponse { resp := new(CommonResponse) resp.Data = new(CreateWithdrawPaymentInfoData) return resp }