third-platform-sdk/platform/elong-hotel/consts.go
2024-07-17 22:10:35 +08:00

27 lines
771 B
Go
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

package elong_hotel
// 相关地址
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
)