feat:完善项目信息

This commit is contained in:
henry
2022-01-21 14:16:48 +08:00
parent 1c027dd2d1
commit adb5bd7283
9 changed files with 158 additions and 8 deletions

View File

@ -358,12 +358,15 @@ func registerAdminAPI(app *gin.Engine) {
technology.POST("/paper/detail", _api.PaperDetail)
technology.POST("/paper/delete", _api.PaperDelete)
technology.POST("/product", _api.Product)
technology.POST("/product/examine", _api.ProductExamine)
technology.POST("/product/detail", _api.ProductDetail)
technology.POST("/product/delete", _api.ProductDelete)
technology.POST("/achievement", _api.Achievement)
technology.POST("/achievement/examine", _api.AchievementExamine)
technology.POST("/achievement/detail", _api.AchievementDetail)
technology.POST("/achievement/delete", _api.AchievementDelete)
technology.POST("/demand", _api.Demand)
technology.POST("/demand/examine", _api.DemandExamine)
technology.POST("/demand/detail", _api.DemandDetail)
technology.POST("/demand/delete", _api.DemandDelete)
}