生成门店 service 层代码

This commit is contained in:
2025-06-05 10:15:00 +08:00
parent 7faad8b3c4
commit a9dabbbe21
5 changed files with 130 additions and 5 deletions

View File

@ -16,6 +16,7 @@ type (
Info(ctx context.Context, in *model.UserInfoIn) (out *model.UserInfoOut, err error)
Update(ctx context.Context, in *model.UserUpdateIn) (out *model.UpdateOut, err error)
BindPhone(ctx context.Context, in *model.UserBindPhoneIn) (out *model.UpdateOut, err error)
List(ctx context.Context, in *model.UserListIn) (out *model.UserListOut, err error)
}
)