Documentation ¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type BatchPullPhoneNumberRequest ¶
type BatchPullPhoneNumberRequest struct { /** * 分页查询的偏移量 */ DegradOffset int32 `json:"degradOffset"` DeveloperId int64 `json:"developerId"` /** * 每页条数,需小于等于1000 */ DegradLimit string `json:"degradLimit"` }
func (*BatchPullPhoneNumberRequest) DoInvoke ¶
func (req *BatchPullPhoneNumberRequest) DoInvoke(client mtclient.MeituanClient, appAuthToken string) (*BatchPullPhoneNumberResponse, error)
type BatchPullPhoneNumberResponse ¶
type BatchPullPhoneNumberResponse struct { Code string `json:"code"` Msg string `json:"msg"` Data []PhoneNumberInfo `json:"data"` TraceId string `json:"traceId"` }
func (*BatchPullPhoneNumberResponse) IsSuccess ¶
func (response *BatchPullPhoneNumberResponse) IsSuccess() bool
type PhoneNumberInfo ¶
type PhoneNumberInfo struct { /** * 门店下的订单流水号 */ DaySeq int32 `json:"daySeq"` /** * ERP门店ID 请求参数不传appAuthToken信息,默认拉取开发者下所有未完成订单时,会返回该字段 */ EPoiId string `json:"ePoiId"` /** * 订单号 */ OrderId int64 `json:"orderId"` /** * 订单展示号 */ OrderIdView int64 `json:"orderIdView"` /** * 真实手机号 */ RealPhoneNumber string `json:"realPhoneNumber"` /** * 骑手名字 */ RiderName string `json:"riderName"` }
Click to show internal directories.
Click to hide internal directories.