feat:优化项目信息

This commit is contained in:
henry
2022-02-15 17:19:23 +08:00
parent cbc0ad1a41
commit dcb5948e91
45 changed files with 852 additions and 100 deletions

View File

@ -0,0 +1,19 @@
package api
import (
"SciencesServer/app/api/website/controller/payment"
"SciencesServer/app/basic/api"
"SciencesServer/app/session"
"github.com/gin-gonic/gin"
)
// Payment 支付管理
type Payment struct{}
func (*Payment) Launch(c *gin.Context) {
payment.NewInstance()(api.GetSession()(c).(*session.Enterprise)).Launch(0)
}
func (*Payment) Callback(c *gin.Context) {
}