12345678910111213141516171819202122 |
- package http_model
- type GetContactInfoRequest struct {
- SupplierId int `json:"supplier_id"` // 服务商ID
- SubAccountId int `json:"sub_account_id"` // 子账号ID
- }
- type GetContactInfoData struct {
- ContactPhone string `json:"contact_phone"` // 联系电话
- WechatNumber string `json:"wechat_number"` // 微信号
- WechatQRCode string `json:"wechat_qr_code"` // 微信二维码
- }
- func NewGetContactInfoRequest() *GetContactInfoRequest {
- return new(GetContactInfoRequest)
- }
- func NewGetContactInfoResponse() *CommonResponse {
- resp := new(CommonResponse)
- resp.Data = new(GetContactInfoData)
- return resp
- }
|