解决 bug

This commit is contained in:
2025-07-12 19:05:23 +08:00
parent 9113dab102
commit 1462018682
10 changed files with 47 additions and 26 deletions

View File

@ -97,7 +97,11 @@ func (s *sStoreAdmin) Info(ctx context.Context, in *model.StoreAdminInfoIn) (out
return nil, ecode.Fail.Sub("查询门店管理员失败")
}
out = &model.StoreAdminInfoOut{
Username: storeAdmin.Username,
Id: storeAdmin.Id,
StoreId: storeAdmin.StoreId,
Username: storeAdmin.Username,
RealName: storeAdmin.RealName,
IsPrimary: storeAdmin.IsPrimary,
}
return
}