feat:完善信息

This commit is contained in:
henry
2022-01-24 11:28:21 +08:00
parent 26271bfeff
commit 295ca23dcc
8 changed files with 159 additions and 15 deletions

View File

@ -354,6 +354,7 @@ func registerAdminAPI(app *gin.Engine) {
technology.POST("/patent/add", _api.PatentForm)
technology.POST("/patent/edit", _api.PatentForm)
technology.POST("/patent/bind", _api.PatentBind)
technology.POST("/patent/shelf", _api.PatentShelf)
technology.POST("/patent/delete", _api.PatentDelete)
technology.GET("/patent/ipc", _api.PatentIPC)
technology.POST("/patent/ipc/add", _api.PatentIPCForm)
@ -365,16 +366,19 @@ func registerAdminAPI(app *gin.Engine) {
technology.POST("/product", _api.Product)
technology.POST("/product/examine", _api.ProductExamine)
technology.POST("/product/detail", _api.ProductDetail)
technology.POST("/product/shelf", _api.ProductShelf)
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/shelf", _api.AchievementShelf)
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)
technology.POST("/project", _api.Project)
technology.POST("/project/shelf", _api.ProjectShelf)
technology.POST("/project/delete", _api.ProjectDelete)
}
// Activity 活动管理