feat:完善项目信息

This commit is contained in:
henry
2021-12-28 17:14:02 +08:00
parent ae25321694
commit 40168a30b3
12 changed files with 339 additions and 70 deletions

View File

@ -261,7 +261,12 @@ func registerEnterpriseAPI(app *gin.Engine) {
{
_api := new(api3.User)
userV1.GET("/info", _api.Info)
userV1.GET("/patent", _api.Patent)
userV1.POST("/back", _api.Back)
userV1.POST("/back/bind", _api.BackBind)
userV1.POST("/back/unbind", _api.BackUnbind)
userV1.POST("/bill", _api.Bill)
userV1.POST("/bill/ticket", _api.BillTicket)
userV1.POST("/bill/ticket/issue", _api.BillTicketIssue)
}
// Home 首页管理
homeV1 := v1.Group("/home")