feat: wecom curd

This commit is contained in:
zzw
2026-08-31 11:10:15 +08:00
parent 53d203ee14
commit d618ac32b0
37 changed files with 2707 additions and 33 deletions
@@ -85,3 +85,9 @@ func (s *SaleServer) InfoInternal(ctx context.Context, in *sale.InfoReq) (*sale.
l := logic.NewInfoInternalLogic(ctx, s.svcCtx)
return l.InfoInternal(in)
}
// 按 id 批量查销售 id+name(内部)
func (s *SaleServer) NamesByIds(ctx context.Context, in *sale.NamesByIdsReq) (*sale.NamesByIdsData, error) {
l := logic.NewNamesByIdsLogic(ctx, s.svcCtx)
return l.NamesByIds(in)
}