新增用户列表接口定义

This commit is contained in:
2025-06-04 17:58:21 +08:00
parent 1db01717fe
commit 5bbdc7ec7c
3 changed files with 17 additions and 6 deletions

View File

@ -124,3 +124,7 @@ func (s *sUser) Update(ctx context.Context, in *model.UserUpdateIn) (out *model.
func (s *sUser) BindPhone(ctx context.Context, in *model.UserBindPhoneIn) (out *model.UpdateOut, err error) {
return
}
func (s *sUser) List(ctx context.Context, in *model.UserListIn) (out *model.UserListOut, err error) {
return
}