1234567891011121314151617181920212223242526272829303132333435 |
- package models
- type CreateMerchantPayInfoRequest struct {
- MerchantOpenID string `json:"merchant_open_id"`
- BusinessLicense string `json:"business_license"`
- IDCardFront string `json:"id_card_front"`
- IDCardBack string `json:"id_card_back"`
- IDCardHand string `json:"id_card_hand"`
- BankAccount string `json:"bank_account"`
- BankCode string `json:"bank_code"`
- BankAddress string `json:"bank_address"`
- AccountName string `json:"account_name"`
- MerchantType int `json:"merchant_type"`
- EntryInfo string `json:"entry_info"`
- }
- type GetMerchantPayInfoRequest struct {
- MerchantOpenID string `json:"merchant_open_id"`
- }
- type UpdateMerchantPayInfoRequest struct {
- ID int `json:"id"`
- MerchantOpenID string `json:"merchant_open_id"`
- BusinessLicense string `json:"business_license"`
- IDCardFront string `json:"id_card_front"`
- IDCardBack string `json:"id_card_back"`
- IDCardHand string `json:"id_card_hand"`
- BankAccount string `json:"bank_account"`
- BankCode string `json:"bank_code"`
- BankAddress string `json:"bank_address"`
- AccountName string `json:"account_name"`
- MerchantType int `json:"merchant_type"`
- EntryInfo string `json:"entry_info"`
- }
|