|
@@ -359,6 +359,8 @@ type ReqGetPayInfo struct {
|
|
|
RoleId string `json:"roleid,omitempty"`
|
|
RoleId string `json:"roleid,omitempty"`
|
|
|
}
|
|
}
|
|
|
|
|
|
|
|
|
|
+var ResDnyPayInfo *ResGetPayInfo
|
|
|
|
|
+
|
|
|
type ResGetPayInfo struct {
|
|
type ResGetPayInfo struct {
|
|
|
Code int `json:"code"`
|
|
Code int `json:"code"`
|
|
|
GiftList []GiftLists `json:"giftList"`
|
|
GiftList []GiftLists `json:"giftList"`
|
|
@@ -375,7 +377,8 @@ type GiftLists struct {
|
|
|
|
|
|
|
|
// 东南亚支付服务使用
|
|
// 东南亚支付服务使用
|
|
|
func WebGmProcessGetPayInfo(c *gin.Context) {
|
|
func WebGmProcessGetPayInfo(c *gin.Context) {
|
|
|
- res := ResGetPayInfo{}
|
|
|
|
|
|
|
+ res := ResDnyPayInfo
|
|
|
|
|
+ res.Code = 0
|
|
|
c.JSON(http.StatusOK, res)
|
|
c.JSON(http.StatusOK, res)
|
|
|
}
|
|
}
|
|
|
|
|
|