feat:完善用户项目模块数据模型

This commit is contained in:
henry
2021-11-29 14:55:53 +08:00
parent fb5a3d910b
commit 998b78fb23
7 changed files with 304 additions and 1 deletions

View File

@ -185,6 +185,11 @@ func registerEnterpriseAPI(app *gin.Engine) {
technologyV1.POST("/product/edit", _api.ProductEdit)
technologyV1.POST("/product/shelf", _api.ProductShelf)
technologyV1.POST("/product/delete", _api.ProductDelete)
technologyV1.POST("/project", _api.Project)
technologyV1.POST("/project/add", _api.ProjectAdd)
technologyV1.POST("/project/edit", _api.ProjectEdit)
technologyV1.POST("/project/shelf", _api.ProjectShelf)
technologyV1.POST("/project/delete", _api.ProjectDelete)
}
// Identity 身份信息
identityV1 := v1.Group("/config")