23 lines
894 B
Go
23 lines
894 B
Go
package didi_union
|
|
|
|
// 相关地址
|
|
const (
|
|
SiteDomain = "https://union.didi.cn" // SiteDomain 滴滴联盟域名
|
|
SiteUrl = "https://union.didi.cn/#/backhome" // SiteUrl 滴滴联盟后台地址
|
|
DocUrl = "https://union.didi.cn/#/helpCenter/commonProblem/f1466" // DocUrl 滴滴联盟文档地址
|
|
ApiDocUrl = "https://union.didi.cn/#/account/apiManage" // ApiDocUrl 滴滴联盟API文档地址
|
|
)
|
|
|
|
// OrderType 订单类型
|
|
type OrderType string
|
|
|
|
// 订单查询type枚举值
|
|
const (
|
|
OrderTypeAll OrderType = "" //全部
|
|
OrderTypeEnergy OrderType = "energy" //滴滴加油
|
|
OrderTypeCar OrderType = "online_car" //网约车
|
|
OrderTypeFreight OrderType = "freight" //货运
|
|
OrderTypeHxz OrderType = "king_flower" //花小猪
|
|
OrderTypeDaijia OrderType = "daijia" //代驾
|
|
)
|