feat:增加用户企业管理信息

This commit is contained in:
henry
2021-11-30 16:09:04 +08:00
parent c6f0129e4b
commit 5bab79a613
13 changed files with 403 additions and 13 deletions

View File

@ -201,6 +201,15 @@ func registerEnterpriseAPI(app *gin.Engine) {
serviceV1.POST("/demand/edit", _api.DemandEdit)
serviceV1.POST("/demand/delete", _api.DemandDelete)
}
// Manage 管理信息
manageV1 := v1.Group("/manage")
{
_api := new(api2.Manage)
manageV1.POST("/enterprise", _api.Enterprise)
manageV1.POST("/enterprise/add", _api.EnterpriseAdd)
manageV1.POST("/enterprise/edit", _api.EnterpriseEdit)
manageV1.POST("/enterprise/delete", _api.EnterpriseDelete)
}
// Identity 身份信息
identityV1 := v1.Group("/config")
{