get_contact_info.go 619 B

12345678910111213141516171819202122
  1. package http_model
  2. type GetContactInfoRequest struct {
  3. SupplierId int `json:"supplier_id"` // 服务商ID
  4. SubAccountId int `json:"sub_account_id"` // 子账号ID
  5. }
  6. type GetContactInfoData struct {
  7. ContactPhone string `json:"contact_phone"` // 联系电话
  8. WechatNumber string `json:"wechat_number"` // 微信号
  9. WechatQRCode string `json:"wechat_qr_code"` // 微信二维码
  10. }
  11. func NewGetContactInfoRequest() *GetContactInfoRequest {
  12. return new(GetContactInfoRequest)
  13. }
  14. func NewGetContactInfoResponse() *CommonResponse {
  15. resp := new(CommonResponse)
  16. resp.Data = new(GetContactInfoData)
  17. return resp
  18. }