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