You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
367 B
21 lines
367 B
package alipay
|
|
|
|
import (
|
|
"recook/internal/domain"
|
|
)
|
|
|
|
/*
|
|
正式环境
|
|
*/
|
|
const (
|
|
PartnerID = "2088821996635843"
|
|
//AppID = "2019070265731480"
|
|
AppID = "2021001108632223" // 新的appid
|
|
AppID0602 = "2021001152664931"
|
|
RefundURL = "https://openapi.alipay.com/gateway.do" // 退款
|
|
)
|
|
|
|
var (
|
|
PayCallbackUrl = domain.GetName() + "/api/v1/pay/alipay/callback"
|
|
)
|