feat:完善项目

This commit is contained in:
henry
2022-01-17 13:23:49 +08:00
parent 8fd5283b0e
commit 4850f6348f
6 changed files with 200 additions and 2 deletions

View File

@ -322,6 +322,9 @@ func registerAdminAPI(app *gin.Engine) {
technology.POST("/product", _api.Product)
technology.POST("/product/detail", _api.ProductDetail)
technology.POST("/product/delete", _api.ProductDelete)
technology.POST("/achievement", _api.Achievement)
technology.POST("/achievement/detail", _api.AchievementDetail)
technology.POST("/achievement/delete", _api.AchievementDelete)
}
// Activity 活动管理
activity := v1.Group("/activity")