feat:完善项目管理,增加技术成果数据

This commit is contained in:
henry
2021-12-14 13:34:42 +08:00
parent 3bb8f96d84
commit 3c55143278
11 changed files with 542 additions and 2 deletions

View File

@ -218,6 +218,11 @@ func registerEnterpriseAPI(app *gin.Engine) {
technologyV1.POST("/project/edit", _api.ProjectEdit)
technologyV1.POST("/project/shelf", _api.ProjectShelf)
technologyV1.POST("/project/delete", _api.ProjectDelete)
technologyV1.POST("/achievement", _api.Achievement)
technologyV1.POST("/achievement/add", _api.AchievementAdd)
technologyV1.POST("/achievement/edit", _api.AchievementEdit)
technologyV1.POST("/achievement/shelf", _api.AchievementShelf)
technologyV1.POST("/achievement/delete", _api.AchievementDelete)
}
// Service 服务信息
serviceV1 := v1.Group("/service")