53 lines
1.3 KiB
Go
53 lines
1.3 KiB
Go
package handler
|
|
|
|
import (
|
|
"net/http"
|
|
|
|
"github.com/gin-gonic/gin"
|
|
)
|
|
|
|
// PaymentAlipayNotify POST /api/payment/alipay/notify
|
|
func PaymentAlipayNotify(c *gin.Context) {
|
|
c.JSON(http.StatusOK, gin.H{"success": true})
|
|
}
|
|
|
|
// PaymentCallback POST /api/payment/callback
|
|
func PaymentCallback(c *gin.Context) {
|
|
c.JSON(http.StatusOK, gin.H{"success": true})
|
|
}
|
|
|
|
// PaymentCreateOrder POST /api/payment/create-order
|
|
func PaymentCreateOrder(c *gin.Context) {
|
|
c.JSON(http.StatusOK, gin.H{"success": true})
|
|
}
|
|
|
|
// PaymentMethods GET /api/payment/methods
|
|
func PaymentMethods(c *gin.Context) {
|
|
c.JSON(http.StatusOK, gin.H{"success": true, "data": []interface{}{}})
|
|
}
|
|
|
|
// PaymentQuery GET /api/payment/query
|
|
func PaymentQuery(c *gin.Context) {
|
|
c.JSON(http.StatusOK, gin.H{"success": true})
|
|
}
|
|
|
|
// PaymentStatusOrderSn GET /api/payment/status/:orderSn
|
|
func PaymentStatusOrderSn(c *gin.Context) {
|
|
c.JSON(http.StatusOK, gin.H{"success": true})
|
|
}
|
|
|
|
// PaymentVerify POST /api/payment/verify
|
|
func PaymentVerify(c *gin.Context) {
|
|
c.JSON(http.StatusOK, gin.H{"success": true})
|
|
}
|
|
|
|
// PaymentWechatNotify POST /api/payment/wechat/notify
|
|
func PaymentWechatNotify(c *gin.Context) {
|
|
c.JSON(http.StatusOK, gin.H{"success": true})
|
|
}
|
|
|
|
// PaymentWechatTransferNotify POST /api/payment/wechat/transfer/notify
|
|
func PaymentWechatTransferNotify(c *gin.Context) {
|
|
c.JSON(http.StatusOK, gin.H{"success": true})
|
|
}
|