feat:完善信息,增加需求指派功能

This commit is contained in:
henry
2022-01-24 15:35:43 +08:00
parent 295ca23dcc
commit 1c0d9dfb6b
12 changed files with 184 additions and 68 deletions

View File

@ -310,6 +310,7 @@ func registerAdminAPI(app *gin.Engine) {
manage.POST("/laboratory/detail", _api.LaboratoryDetail)
manage.POST("/laboratory/examine", _api.LaboratoryExamine)
manage.POST("/agent", _api.Agent)
manage.POST("/agent/select", _api.AgentSelect)
manage.POST("/agent/detail", _api.AgentDetail)
manage.POST("/agent/examine", _api.AgentExamine)
manage.POST("/enterprise", _api.Enterprise)
@ -377,6 +378,7 @@ func registerAdminAPI(app *gin.Engine) {
technology.POST("/demand/examine", _api.DemandExamine)
technology.POST("/demand/detail", _api.DemandDetail)
technology.POST("/demand/delete", _api.DemandDelete)
technology.POST("/demand/assign", _api.DemandAssign)
technology.POST("/project", _api.Project)
technology.POST("/project/shelf", _api.ProjectShelf)
technology.POST("/project/delete", _api.ProjectDelete)