feat: sale manager

This commit is contained in:
zzw
2026-08-28 10:49:09 +08:00
parent 97eba7ad48
commit 6f567319be
82 changed files with 4491 additions and 182 deletions
@@ -32,3 +32,13 @@ func (s *ChoreServer) Test(ctx context.Context, in *chore.TestReq) (*chore.Respo
l := logic.NewTestLogic(ctx, s.svcCtx)
return l.Test(in)
}
func (s *ChoreServer) DecryptMobile(ctx context.Context, in *chore.DecryptMobileReq) (*chore.Response, error) {
l := logic.NewDecryptMobileLogic(ctx, s.svcCtx)
return l.DecryptMobile(in)
}
func (s *ChoreServer) Regions(ctx context.Context, in *chore.RegionsReq) (*chore.Response, error) {
l := logic.NewRegionsLogic(ctx, s.svcCtx)
return l.Regions(in)
}