feat:增加用户资产和会员状态

This commit is contained in:
henry
2021-12-10 11:34:19 +08:00
parent 626f30a2bd
commit 2ee564d540
13 changed files with 188 additions and 31 deletions

View File

@ -161,6 +161,12 @@ func registerEnterpriseAPI(app *gin.Engine) {
userV1.GET("/info", _api.Info)
userV1.GET("/patent", _api.Patent)
}
// Home 首页管理
homeV1 := v1.Group("/home")
{
_api := new(api2.Home)
homeV1.GET("", _api.Instance)
}
// Sys 配置管理
sysV1 := v1.Group("/sys")
{