feat:完善项目信息

This commit is contained in:
henry
2021-12-27 11:12:37 +08:00
parent 41aa6f337c
commit 4926c5b765
9 changed files with 96 additions and 44 deletions

View File

@ -81,12 +81,13 @@ func registerAPI(app *gin.Engine) {
manageV1.POST("/expert/cooperate", _api.ExpertCooperate)
manageV1.POST("/expert/cooperate/detail", _api.ExpertCooperateDetail)
manageV1.POST("/laboratory", _api.Laboratory)
manageV1.POST("/laboratory/achievement", _api.ExpertAchievement)
manageV1.POST("/laboratory/project", _api.ExpertProject)
manageV1.POST("/laboratory/patent", _api.ExpertPatent)
manageV1.POST("/laboratory/paper", _api.ExpertPaper)
manageV1.POST("/laboratory/cooperate", _api.ExpertCooperate)
manageV1.POST("/laboratory/cooperate/detail", _api.ExpertCooperateDetail)
manageV1.POST("/laboratory/achievement", _api.LaboratoryAchievement)
manageV1.POST("/laboratory/project", _api.LaboratoryProject)
manageV1.POST("/laboratory/patent", _api.LaboratoryPatent)
manageV1.POST("/laboratory/paper", _api.LaboratoryPaper)
manageV1.POST("/laboratory/cooperate", _api.LaboratoryCooperate)
manageV1.POST("/laboratory/cooperate/detail", _api.LaboratoryCooperateDetail)
manageV1.POST("/laboratory/equipment", _api.LaboratoryEquipment)
}
//Technology 技术信息管理
technologyV1 := v1.Group("/technology")