27 lines
770 B
Go
27 lines
770 B
Go
|
|
package tong_cheng
|
|||
|
|
|
|||
|
|
// 相关地址
|
|||
|
|
const (
|
|||
|
|
SiteDomain = "" // Domain 后台域名
|
|||
|
|
SiteUrl = "" // SiteUrl 后台地址
|
|||
|
|
DocUrl = "" // DocUrl 文档地址
|
|||
|
|
ApiDocUrl = "" // ApiDocUrl api文档地址
|
|||
|
|
)
|
|||
|
|
|
|||
|
|
// header头信息
|
|||
|
|
const ()
|
|||
|
|
|
|||
|
|
// 环境
|
|||
|
|
const (
|
|||
|
|
EnvProd = "prod" // 正式环境
|
|||
|
|
EnvHuidu = "huidu" // 灰度
|
|||
|
|
)
|
|||
|
|
|
|||
|
|
// 接口地址
|
|||
|
|
const (
|
|||
|
|
HDApiDomain = "https://mp-blindbox-hd.elong.com" // Domain api域名 (灰度环境)
|
|||
|
|
ApiDomain = "https://mp-blindbox.elong.com" // api域名(正式环境)
|
|||
|
|
GetLinkUri = "/nopaymentorder/externalorder/getExternalChannelConfig" // 生成跳转链接uri
|
|||
|
|
GetOrderListUri = "/nopaymentorder/externalorder/getExternalOrder" // 获取订单uri
|
|||
|
|
)
|