feat:完善入驻信息管理

This commit is contained in:
henry
2021-12-07 16:10:12 +08:00
parent 3989befe92
commit 95e8fdb9bb
30 changed files with 397 additions and 89 deletions

View File

@ -143,6 +143,7 @@ func registerEnterpriseAPI(app *gin.Engine) {
_api := new(api2.Config)
configV1.GET("/area", _api.Area)
configV1.GET("/identity", _api.Identity)
configV1.GET("/industry", _api.Industry)
}
// Account 账号管理
accountV1 := v1.Group("/account")
@ -172,6 +173,7 @@ func registerEnterpriseAPI(app *gin.Engine) {
_api := new(api2.Settled)
settledV1.GET("", _api.Index)
settledV1.POST("/company", _api.Company)
settledV1.POST("/company/get", _api.CompanyGet)
settledV1.POST("/expert", _api.Expert)
settledV1.POST("/research", _api.Research)
settledV1.POST("/laboratory", _api.Laboratory)