feat:完善信息
This commit is contained in:
@ -47,6 +47,7 @@ type (
|
||||
|
||||
var tenantHandlePerfect = map[int]func(params *TenantPerfectParams) (string, error){
|
||||
config.TenantUserIdentityForCompany: perfectForCompany,
|
||||
config.TenantUserIdentityForExpert: perfectForExpert,
|
||||
}
|
||||
|
||||
func perfectForCompany(params *TenantPerfectParams) (string, error) {
|
||||
@ -56,8 +57,8 @@ func perfectForCompany(params *TenantPerfectParams) (string, error) {
|
||||
return utils.AnyToJSON(params.TenantParamsForCompany), nil
|
||||
}
|
||||
|
||||
func perfectForExpert() error {
|
||||
return nil
|
||||
func perfectForExpert(params *TenantPerfectParams) (string, error) {
|
||||
return "", nil
|
||||
}
|
||||
|
||||
func perfectForResearch() error {
|
||||
|
Reference in New Issue
Block a user