feat:增加用户企业管理信息
This commit is contained in:
@ -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")
|
||||
{
|
||||
|
Reference in New Issue
Block a user