feat:完善信息

This commit is contained in:
henry
2021-10-09 17:32:23 +08:00
parent af44287b4a
commit 0dd46c0c9d
10 changed files with 199 additions and 5 deletions

View File

@ -0,0 +1,19 @@
package api
import (
"SciencesServer/app/basic/api"
"SciencesServer/app/enterprise/controller/tenant"
"SciencesServer/app/service"
"github.com/gin-gonic/gin"
)
type Tenant struct{}
func (a *Tenant) SettledCompany(c *gin.Context) {
err := tenant.NewSettled()(api.GetSession()(c).(*service.SessionEnterprise)).Company(nil, nil)
api.APIResponse(err)(c)
}
func (a *Tenant) SettledExpert(c *gin.Context) {
}