fix: sale create fields
CI / changes (push) Successful in 14s
CI / docker-bff (push) Successful in 3s
CI / docker-product (push) Successful in 24s
CI / docker-admin (push) Has been skipped
CI / docker-user (push) Has been skipped
CI / docker-ad (push) Has been skipped
CI / docker-chore (push) Successful in 25s
CI / docker-express (push) Has been skipped
CI / docker-sale (push) Successful in 26s

This commit is contained in:
zzw
2026-08-28 15:35:33 +08:00
parent 914a11d05a
commit 53d203ee14
20 changed files with 542 additions and 251 deletions
@@ -42,3 +42,9 @@ func (s *ChoreServer) Regions(ctx context.Context, in *chore.RegionsReq) (*chore
l := logic.NewRegionsLogic(ctx, s.svcCtx)
return l.Regions(in)
}
// 服务间调用:按 id 批量查地区名称
func (s *ChoreServer) RegionsByIds(ctx context.Context, in *chore.RegionsByIdsReq) (*chore.RegionsByIdsData, error) {
l := logic.NewRegionsByIdsLogic(ctx, s.svcCtx)
return l.RegionsByIds(in)
}