feat:完善项目信息

This commit is contained in:
henry
2021-12-24 16:20:03 +08:00
parent b506378003
commit c80e581956
7 changed files with 216 additions and 2 deletions

View File

@ -75,6 +75,11 @@ func registerAPI(app *gin.Engine) {
manageV1.POST("/company/product", _api.CompanyProduct)
manageV1.POST("/expert", _api.Expert)
manageV1.POST("/expert/achievement", _api.ExpertAchievement)
manageV1.POST("/expert/project", _api.ExpertProject)
manageV1.POST("/expert/patent", _api.ExpertPatent)
manageV1.POST("/expert/paper", _api.ExpertPaper)
manageV1.POST("/expert/company", _api.ExpertCompany)
manageV1.POST("/expert/company/detail", _api.ExpertCompanyDetail)
}
//Technology 技术信息管理
technologyV1 := v1.Group("/technology")