feat:增加用户服务需求数据模型

This commit is contained in:
henry
2021-11-29 17:24:48 +08:00
parent 998b78fb23
commit a441d1f2f1
8 changed files with 348 additions and 9 deletions

View File

@ -191,6 +191,16 @@ func registerEnterpriseAPI(app *gin.Engine) {
technologyV1.POST("/project/shelf", _api.ProjectShelf)
technologyV1.POST("/project/delete", _api.ProjectDelete)
}
// Service 服务信息
serviceV1 := v1.Group("/service")
{
_api := new(api2.Service)
serviceV1.POST("/demand", _api.Demand)
serviceV1.POST("/demand/detail", _api.DemandDetail)
serviceV1.POST("/demand/add", _api.DemandAdd)
serviceV1.POST("/demand/edit", _api.DemandEdit)
serviceV1.POST("/demand/delete", _api.DemandDelete)
}
// Identity 身份信息
identityV1 := v1.Group("/config")
{