1234567891011121314151617181920212223242526 |
- package http_model
- type UpdateWithdrawPaymentInfoRequest struct {
- PaymentInfoId int `json:"payment_info_id"` // 收款信息ID
- 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 UpdateWithdrawPaymentInfoData struct {
- }
- func NewUpdateWithdrawPaymentInfoRequest() *UpdateWithdrawPaymentInfoRequest {
- return new(UpdateWithdrawPaymentInfoRequest)
- }
- func NewUpdateWithdrawPaymentInfoResponse() *CommonResponse {
- resp := new(CommonResponse)
- resp.Data = new(UpdateWithdrawPaymentInfoData)
- return resp
- }
|