@be-link/ecommerce-backend-bff-service-node-sdk 0.0.26 → 0.0.28

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -0,0 +1,628 @@
1
+ /**
2
+ * Store Service 的类型定义
3
+ * 使用命名空间组织类型,与后端 SDK 保持一致
4
+ */
5
+ export declare namespace Service {
6
+ /**
7
+ * 实体定义
8
+ */
9
+ namespace Entity {
10
+ /**
11
+ * 门店基础信息
12
+ */
13
+ interface StoreBasicInfo {
14
+ /** 门店id */
15
+ id: number;
16
+ /** 创建时间 */
17
+ createdAt: number;
18
+ /** 更新时间 */
19
+ updatedAt: number;
20
+ /** 删除时间 */
21
+ deletedAt: number;
22
+ /** 门店名称 */
23
+ storeName: string;
24
+ /** 省 */
25
+ province: string;
26
+ /** 市 */
27
+ city: string;
28
+ /** 区 */
29
+ area: string;
30
+ /** 详细地址 */
31
+ address: string;
32
+ /** 纬度 */
33
+ latitude: number;
34
+ /** 经度 */
35
+ longitude: number;
36
+ /** 联系电话 */
37
+ telephone: string;
38
+ /** 加盟商id */
39
+ franchiseeId: string;
40
+ /** BD 负责人 Pandora ID */
41
+ bdPandoraId: string;
42
+ /** 店长 Pandora ID */
43
+ storeManagerPandoraId: string;
44
+ /** 门店二维码 */
45
+ qrCodeState?: any;
46
+ /** 经营状态,0未绑定负责人,1营业中,2已打烊 */
47
+ businessStatus: number;
48
+ /** 商家合作类型:0, 未配置;1, 独立店;2, 店中店 */
49
+ merchantCooperationType: number;
50
+ /** 门店类型:0, 未配置;1, 自营;2, 加盟 */
51
+ storeType: number;
52
+ /** 门店承接类型:0-未配置,1-老店期承接,2-拉新期承接,3-开播后承接 */
53
+ storeUndertakingType: number;
54
+ /** 是否需要平台拉新:0, 未配置;1, 是;2, 否 */
55
+ isPlatformNewCustomerOperation: number;
56
+ /** 拉新时间 毫秒级时间戳 */
57
+ newCustomerTime: number;
58
+ /** 最新活动时间 毫秒级时间戳 */
59
+ latestActiveTime: number;
60
+ }
61
+ /**
62
+ * 门店结算信息
63
+ */
64
+ interface StoreSettlement {
65
+ /** 结算信息id */
66
+ id: number;
67
+ /** 门店ID */
68
+ storeId: number;
69
+ /** 工作机 uid,工作机手机号和授权手机号做系统匹配 */
70
+ workPhoneUid: string;
71
+ /** 结算分佣比例 */
72
+ settlementCommissionRate?: any;
73
+ /** 直播时间 毫秒级时间戳 */
74
+ liveTime: number;
75
+ /** 免润期(天) */
76
+ gracePeriod: number;
77
+ /** 工作机企微 id,系统匹配 */
78
+ workPhoneWxCorpId: string;
79
+ }
80
+ /**
81
+ * 门店仓配信息
82
+ */
83
+ interface StoreWarehouseDelivery {
84
+ /** 仓配信息id */
85
+ id: number;
86
+ /** 门店ID */
87
+ storeId: number;
88
+ /** 收货紧急联系人姓名 */
89
+ emergencyContactName: string;
90
+ /** 收货紧急联系人手机号 */
91
+ emergencyContactPhone: string;
92
+ /** 仓配时间:白配、夜配 */
93
+ warehouseDeliveryTime: number;
94
+ /** 须知 */
95
+ remark: string;
96
+ /** 营业时间,时间格式,手动录入 */
97
+ businessHours?: any;
98
+ /** 门店打烊时间;{loop: [mon,tue,wed,thu,fri,sat,sun]},{once: [[1758556800000, 1758643200000]]} */
99
+ closingHour?: any;
100
+ }
101
+ /**
102
+ * 完整门店信息(包含基础、结算、仓配信息)
103
+ */
104
+ interface StoreFullInfo extends StoreBasicInfo {
105
+ settlement?: StoreSettlement;
106
+ warehouseDelivery?: StoreWarehouseDelivery;
107
+ }
108
+ /**
109
+ * 门店分组信息
110
+ */
111
+ interface StoreGroup {
112
+ /** 分组ID */
113
+ groupId: string;
114
+ /** 分组名称 */
115
+ groupName: string;
116
+ /** 门店ID列表 */
117
+ storeIds: string[];
118
+ /** 创建时间 */
119
+ createdAt: number;
120
+ /** 更新时间 */
121
+ updatedAt: number;
122
+ }
123
+ }
124
+ /**
125
+ * 查询块定义
126
+ */
127
+ namespace QueryBlock {
128
+ /**
129
+ * 门店基础信息查询块
130
+ */
131
+ interface BasicInfo {
132
+ /** 门店名称(模糊搜索) */
133
+ storeName?: string;
134
+ /** 门店微赞ID */
135
+ storeId?: number;
136
+ /** 省 */
137
+ province?: string;
138
+ /** 市 */
139
+ city?: string;
140
+ /** 区 */
141
+ area?: string;
142
+ /** 加盟商ID列表 */
143
+ franchiseeIds?: string[];
144
+ /** 是否绑定加盟商 */
145
+ hasFranchisee?: boolean;
146
+ /** BD 负责人 Pandora ID 列表 */
147
+ bdPandoraIds?: string[];
148
+ /** 店长 Pandora ID */
149
+ storeManagerPandoraId?: string;
150
+ /** 经营状态:0-未绑定负责人,1-营业中,2-已打烊 */
151
+ businessStatus?: number;
152
+ /** 商家合作类型:0-未配置,1-独立店,2-店中店 */
153
+ merchantCooperationType?: number;
154
+ /** 门店类型:0-未配置,1-自营,2-加盟 */
155
+ storeType?: number;
156
+ /** 门店承接类型:0-未配置,1-老店期承接,2-拉新期承接,3-开播后承接 */
157
+ storeUndertakingType?: number;
158
+ /** 是否需要平台拉新:0-未配置,1-是,2-否 */
159
+ isPlatformNewCustomerOperation?: number;
160
+ }
161
+ /**
162
+ * 门店结算信息查询块
163
+ */
164
+ interface Settlement {
165
+ /** 直播时间(开始时间,毫秒级时间戳) */
166
+ liveTimeStart?: number;
167
+ /** 直播时间(结束时间,毫秒级时间戳) */
168
+ liveTimeEnd?: number;
169
+ }
170
+ /**
171
+ * 门店仓配信息查询块
172
+ */
173
+ interface WarehouseDelivery {
174
+ /** 仓配时间:白配、夜配 */
175
+ warehouseDeliveryTime?: number;
176
+ }
177
+ }
178
+ /**
179
+ * 响应块类型枚举
180
+ */
181
+ namespace ResponseBlock {
182
+ enum BlockType {
183
+ /** 门店基础信息表 */
184
+ BASIC_INFO = "BASIC_INFO",
185
+ /** 门店结算信息表 */
186
+ SETTLEMENT = "SETTLEMENT",
187
+ /** 门店仓配信息表 */
188
+ WAREHOUSE_DELIVERY = "WAREHOUSE_DELIVERY"
189
+ }
190
+ }
191
+ /**
192
+ * 请求参数定义
193
+ */
194
+ namespace Request {
195
+ /**
196
+ * 创建门店请求
197
+ */
198
+ interface createStore {
199
+ /** 门店基础信息 */
200
+ basicInfo: {
201
+ /** 门店名称 */
202
+ storeName: string;
203
+ /** 省 */
204
+ province: string;
205
+ /** 市 */
206
+ city: string;
207
+ /** 区 */
208
+ area: string;
209
+ /** 详细地址 */
210
+ address: string;
211
+ /** 纬度(地图选点) */
212
+ latitude: number;
213
+ /** 经度(地图选点) */
214
+ longitude: number;
215
+ };
216
+ /** 门店结算信息 */
217
+ settlementInfo?: {
218
+ /** 工作机 uid */
219
+ workPhoneUid?: string;
220
+ /** 工作机企微 id */
221
+ workPhoneWxCorpId?: string;
222
+ /** 结算分佣比例 */
223
+ settlementCommissionRate?: any;
224
+ /** 直播时间 毫秒级时间戳 */
225
+ liveTime?: number;
226
+ /** 免润期(天) */
227
+ gracePeriod?: number;
228
+ };
229
+ /** 门店仓配信息 */
230
+ warehouseDeliveryInfo?: {
231
+ /** 收货紧急联系人姓名 */
232
+ emergencyContactName?: string;
233
+ /** 收货紧急联系人手机号 */
234
+ emergencyContactPhone?: string;
235
+ /** 仓配时间:白配、夜配 */
236
+ warehouseDeliveryTime?: number;
237
+ /** 须知 */
238
+ remark?: string;
239
+ /** 营业时间 */
240
+ businessHours?: any;
241
+ /** 门店打烊时间 */
242
+ closingHour?: any;
243
+ };
244
+ }
245
+ /**
246
+ * 编辑门店信息请求
247
+ */
248
+ interface updateStoreInfo {
249
+ /** 门店id */
250
+ storeId: number;
251
+ /** 门店基础信息 */
252
+ basicInfo?: {
253
+ /** 经营状态 */
254
+ businessStatus?: number;
255
+ /** 商家合作类型 */
256
+ merchantCooperationType?: number;
257
+ /** 门店类型 */
258
+ storeType?: number;
259
+ /** 是否需要平台拉新 */
260
+ isPlatformNewCustomerOperation?: number;
261
+ };
262
+ /** 门店地址信息 */
263
+ addressInfo?: {
264
+ /** 省 */
265
+ province?: string;
266
+ /** 市 */
267
+ city?: string;
268
+ /** 区 */
269
+ area?: string;
270
+ /** 详细地址 */
271
+ address?: string;
272
+ /** 纬度(地图选点) */
273
+ latitude?: number;
274
+ /** 经度(地图选点) */
275
+ longitude?: number;
276
+ };
277
+ /** 门店结算信息 */
278
+ settlementInfo?: {
279
+ /** 工作机 uid */
280
+ workPhoneUid?: string;
281
+ /** 工作机企微 id */
282
+ workPhoneWxCorpId?: string;
283
+ /** 结算分佣比例 */
284
+ settlementCommissionRate?: any;
285
+ /** 直播时间 毫秒级时间戳 */
286
+ liveTime?: number;
287
+ /** 免润期(天) */
288
+ gracePeriod?: number;
289
+ };
290
+ /** 门店仓配信息 */
291
+ warehouseDeliveryInfo?: {
292
+ /** 收货紧急联系人姓名 */
293
+ emergencyContactName?: string;
294
+ /** 收货紧急联系人手机号 */
295
+ emergencyContactPhone?: string;
296
+ /** 仓配时间:白配、夜配 */
297
+ warehouseDeliveryTime?: number;
298
+ /** 须知 */
299
+ remark?: string;
300
+ /** 营业时间 */
301
+ businessHours?: any;
302
+ /** 门店打烊时间 */
303
+ closingHour?: any;
304
+ };
305
+ }
306
+ /**
307
+ * 获取门店详情请求
308
+ */
309
+ interface getStoreDetail {
310
+ /** 门店id */
311
+ storeId: number;
312
+ }
313
+ /**
314
+ * 获取门店列表请求
315
+ */
316
+ interface getStoreList {
317
+ /** 页码 */
318
+ page?: number;
319
+ /** 每页数量 */
320
+ pageSize?: number;
321
+ /** 门店基础信息查询块 */
322
+ basicInfoQuery?: QueryBlock.BasicInfo;
323
+ /** 门店结算信息查询块 */
324
+ settlementQuery?: QueryBlock.Settlement;
325
+ /** 门店仓配信息查询块 */
326
+ warehouseDeliveryQuery?: QueryBlock.WarehouseDelivery;
327
+ /** 需要返回的响应块(数据表)列表 */
328
+ responseBlocks?: ResponseBlock.BlockType[];
329
+ }
330
+ /**
331
+ * 批量修改门店经营状态请求
332
+ */
333
+ interface batchUpdateBusinessStatus {
334
+ /** 门店ID列表 */
335
+ storeIds: number[];
336
+ /** 经营状态:0-未绑定负责人,1-营业中,2-已打烊 */
337
+ businessStatus: number;
338
+ }
339
+ /**
340
+ * 绑定用户到门店请求(批量)
341
+ */
342
+ interface bindUserToStore {
343
+ /** 门店id */
344
+ storeId: number;
345
+ /** 用户 Pandora ID 列表 */
346
+ userPandoraIds: string[];
347
+ /** 操作者 Pandora ID */
348
+ operatorPandoraId: string;
349
+ }
350
+ /**
351
+ * 解绑用户请求(批量)
352
+ */
353
+ interface unbindUserFromStore {
354
+ /** 门店id */
355
+ storeId: number;
356
+ /** 用户 Pandora ID 列表 */
357
+ userPandoraIds: string[];
358
+ /** 操作者 Pandora ID */
359
+ operatorPandoraId: string;
360
+ }
361
+ /**
362
+ * 创建门店分组请求
363
+ */
364
+ interface createStoreGroup {
365
+ /** 分组名称 */
366
+ groupName: string;
367
+ /** 门店ID列表 */
368
+ storeIds: string[];
369
+ }
370
+ /**
371
+ * 编辑门店分组请求
372
+ */
373
+ interface editStoreGroup {
374
+ /** 分组ID */
375
+ groupId: string;
376
+ /** 分组名称 */
377
+ groupName: string;
378
+ /** 门店ID列表 */
379
+ storeIds: string[];
380
+ }
381
+ /**
382
+ * 删除门店分组请求
383
+ */
384
+ interface deleteStoreGroup {
385
+ /** 分组ID */
386
+ groupId: string;
387
+ }
388
+ /**
389
+ * 查询门店分组列表请求
390
+ */
391
+ interface getStoreGroupList {
392
+ /** 页码 */
393
+ page?: number;
394
+ /** 每页数量 */
395
+ pageSize?: number;
396
+ /** 分组名称(模糊搜索) */
397
+ groupName?: string;
398
+ }
399
+ }
400
+ /**
401
+ * 响应数据定义
402
+ */
403
+ namespace Response {
404
+ /**
405
+ * 创建门店响应
406
+ */
407
+ interface createStore {
408
+ /** 门店id */
409
+ storeId: number;
410
+ /** 门店信息 */
411
+ store: Entity.StoreBasicInfo;
412
+ /** 门店二维码(系统生成) */
413
+ qrCodeState: any;
414
+ }
415
+ /**
416
+ * 编辑门店信息响应
417
+ */
418
+ interface updateStoreInfo {
419
+ /** 是否成功 */
420
+ success: boolean;
421
+ /** 更新后的门店完整信息 */
422
+ store?: Entity.StoreFullInfo;
423
+ }
424
+ /**
425
+ * 获取门店详情响应
426
+ */
427
+ interface getStoreDetail {
428
+ /** 门店完整信息 */
429
+ store: Entity.StoreFullInfo;
430
+ }
431
+ /**
432
+ * 获取门店列表响应
433
+ */
434
+ interface getStoreList {
435
+ /** 门店列表 */
436
+ stores: Array<{
437
+ /** 门店ID */
438
+ storeId: number;
439
+ /** 门店基础信息(如果请求了该块) */
440
+ basicInfo?: Entity.StoreBasicInfo;
441
+ /** 门店结算信息(如果请求了该块) */
442
+ settlement?: Entity.StoreSettlement;
443
+ /** 门店仓配信息(如果请求了该块) */
444
+ warehouseDelivery?: Entity.StoreWarehouseDelivery;
445
+ }>;
446
+ /** 总数 */
447
+ total: number;
448
+ /** 当前页 */
449
+ page: number;
450
+ /** 每页数量 */
451
+ pageSize: number;
452
+ }
453
+ /**
454
+ * 批量修改门店经营状态响应
455
+ */
456
+ interface batchUpdateBusinessStatus {
457
+ /** 是否成功 */
458
+ success: boolean;
459
+ /** 成功更新的门店ID列表 */
460
+ updatedStoreIds: number[];
461
+ /** 失败的门店列表 */
462
+ failedStores?: Array<{
463
+ /** 门店ID */
464
+ storeId: number;
465
+ /** 失败原因 */
466
+ reason: string;
467
+ }>;
468
+ }
469
+ /**
470
+ * 绑定用户到门店响应(批量)
471
+ */
472
+ interface bindUserToStore {
473
+ /** 是否成功 */
474
+ success: boolean;
475
+ /** 成功绑定的关系列表 */
476
+ relations: Array<{
477
+ /** 用户 Pandora ID */
478
+ userPandoraId: string;
479
+ /** 关系id */
480
+ relationId: string;
481
+ }>;
482
+ /** 失败的用户列表 */
483
+ failedUsers?: Array<{
484
+ /** 用户 Pandora ID */
485
+ userPandoraId: string;
486
+ /** 失败原因 */
487
+ reason: string;
488
+ }>;
489
+ }
490
+ /**
491
+ * 解绑用户响应(批量)
492
+ */
493
+ interface unbindUserFromStore {
494
+ /** 是否成功 */
495
+ success: boolean;
496
+ /** 成功解绑的用户 Pandora ID 列表 */
497
+ unboundUserIds: string[];
498
+ /** 失败的用户列表 */
499
+ failedUsers?: Array<{
500
+ /** 用户 Pandora ID */
501
+ userPandoraId: string;
502
+ /** 失败原因 */
503
+ reason: string;
504
+ }>;
505
+ }
506
+ /**
507
+ * 创建门店分组响应
508
+ */
509
+ interface createStoreGroup {
510
+ /** 分组ID */
511
+ groupId: string;
512
+ /** 分组信息 */
513
+ group: Entity.StoreGroup;
514
+ }
515
+ /**
516
+ * 编辑门店分组响应
517
+ */
518
+ interface editStoreGroup {
519
+ /** 是否成功 */
520
+ success: boolean;
521
+ /** 更新后的分组信息 */
522
+ group: Entity.StoreGroup;
523
+ }
524
+ /**
525
+ * 删除门店分组响应
526
+ */
527
+ interface deleteStoreGroup {
528
+ /** 是否成功 */
529
+ success: boolean;
530
+ }
531
+ /**
532
+ * 查询门店分组列表响应
533
+ */
534
+ interface getStoreGroupList {
535
+ /** 分组列表 */
536
+ groups: Entity.StoreGroup[];
537
+ /** 总数 */
538
+ total: number;
539
+ /** 当前页 */
540
+ page: number;
541
+ /** 每页数量 */
542
+ pageSize: number;
543
+ }
544
+ }
545
+ /**
546
+ * Store Controller 接口定义
547
+ * 用于后端 Server 实现
548
+ */
549
+ interface StoreController {
550
+ /**
551
+ * 创建门店
552
+ * @param request 请求参数
553
+ * @param req 请求上下文
554
+ * @returns 响应数据
555
+ */
556
+ createStore(request: Service.Request.createStore, req: any): Promise<Service.Response.createStore>;
557
+ /**
558
+ * 编辑门店信息
559
+ * @param request 请求参数
560
+ * @param req 请求上下文
561
+ * @returns 响应数据
562
+ */
563
+ updateStoreInfo(request: Service.Request.updateStoreInfo, req: any): Promise<Service.Response.updateStoreInfo>;
564
+ /**
565
+ * 获取门店详情
566
+ * @param request 请求参数
567
+ * @param req 请求上下文
568
+ * @returns 响应数据
569
+ */
570
+ getStoreDetail(request: Service.Request.getStoreDetail, req: any): Promise<Service.Response.getStoreDetail>;
571
+ /**
572
+ * 获取门店列表
573
+ * @param request 请求参数
574
+ * @param req 请求上下文
575
+ * @returns 响应数据
576
+ */
577
+ getStoreList(request: Service.Request.getStoreList, req: any): Promise<Service.Response.getStoreList>;
578
+ /**
579
+ * 批量修改门店经营状态
580
+ * @param request 请求参数
581
+ * @param req 请求上下文
582
+ * @returns 响应数据
583
+ */
584
+ batchUpdateBusinessStatus(request: Service.Request.batchUpdateBusinessStatus, req: any): Promise<Service.Response.batchUpdateBusinessStatus>;
585
+ /**
586
+ * 绑定用户到门店
587
+ * @param request 请求参数
588
+ * @param req 请求上下文
589
+ * @returns 响应数据
590
+ */
591
+ bindUserToStore(request: Service.Request.bindUserToStore, req: any): Promise<Service.Response.bindUserToStore>;
592
+ /**
593
+ * 解绑用户
594
+ * @param request 请求参数
595
+ * @param req 请求上下文
596
+ * @returns 响应数据
597
+ */
598
+ unbindUserFromStore(request: Service.Request.unbindUserFromStore, req: any): Promise<Service.Response.unbindUserFromStore>;
599
+ /**
600
+ * 创建门店分组
601
+ * @param request 请求参数
602
+ * @param req 请求上下文
603
+ * @returns 响应数据
604
+ */
605
+ createStoreGroup(request: Service.Request.createStoreGroup, req: any): Promise<Service.Response.createStoreGroup>;
606
+ /**
607
+ * 编辑门店分组
608
+ * @param request 请求参数
609
+ * @param req 请求上下文
610
+ * @returns 响应数据
611
+ */
612
+ editStoreGroup(request: Service.Request.editStoreGroup, req: any): Promise<Service.Response.editStoreGroup>;
613
+ /**
614
+ * 删除门店分组
615
+ * @param request 请求参数
616
+ * @param req 请求上下文
617
+ * @returns 响应数据
618
+ */
619
+ deleteStoreGroup(request: Service.Request.deleteStoreGroup, req: any): Promise<Service.Response.deleteStoreGroup>;
620
+ /**
621
+ * 查询门店分组列表
622
+ * @param request 请求参数
623
+ * @param req 请求上下文
624
+ * @returns 响应数据
625
+ */
626
+ getStoreGroupList(request: Service.Request.getStoreGroupList, req: any): Promise<Service.Response.getStoreGroupList>;
627
+ }
628
+ }
@@ -0,0 +1,22 @@
1
+ /**
2
+ * Store Service 的类型定义
3
+ * 使用命名空间组织类型,与后端 SDK 保持一致
4
+ */
5
+ export var Service;
6
+ (function (Service) {
7
+ /**
8
+ * 响应块类型枚举
9
+ */
10
+ let ResponseBlock;
11
+ (function (ResponseBlock) {
12
+ let BlockType;
13
+ (function (BlockType) {
14
+ /** 门店基础信息表 */
15
+ BlockType["BASIC_INFO"] = "BASIC_INFO";
16
+ /** 门店结算信息表 */
17
+ BlockType["SETTLEMENT"] = "SETTLEMENT";
18
+ /** 门店仓配信息表 */
19
+ BlockType["WAREHOUSE_DELIVERY"] = "WAREHOUSE_DELIVERY";
20
+ })(BlockType = ResponseBlock.BlockType || (ResponseBlock.BlockType = {}));
21
+ })(ResponseBlock = Service.ResponseBlock || (Service.ResponseBlock = {}));
22
+ })(Service || (Service = {}));
@@ -0,0 +1,47 @@
1
+ import { Service } from './types';
2
+ import BaseService from '../../BaseService';
3
+ import type { StandardResponse } from '../../../../types';
4
+ /**
5
+ * PandoraStoreSelectionService - Pandora 圈选门店服务模块
6
+ * 提供商品圈门店 / 直播间圈门店相关的 API 方法
7
+ * 平台: pandora
8
+ */
9
+ export declare class PandoraStoreSelectionService extends BaseService {
10
+ protected prefixUrl: string;
11
+ /**
12
+ * 创建标签分组(业务关系类型)
13
+ * @param request - 请求参数
14
+ * @returns Promise,解析为标准响应格式
15
+ */
16
+ createTagGroup(request: Service.Request.createTagGroup): Promise<StandardResponse<Service.Response.createTagGroup>>;
17
+ /**
18
+ * 创建标签
19
+ * @param request - 请求参数
20
+ * @returns Promise,解析为标准响应格式
21
+ */
22
+ createTag(request: Service.Request.createTag): Promise<StandardResponse<Service.Response.createTag>>;
23
+ /**
24
+ * 批量创建业务关系(圈选门店)
25
+ * @param request - 请求参数
26
+ * @returns Promise,解析为标准响应格式
27
+ */
28
+ batchCreateBizRelation(request: Service.Request.batchCreateBizRelation): Promise<StandardResponse<Service.Response.batchCreateBizRelation>>;
29
+ /**
30
+ * 批量删除业务关系(取消圈选门店)
31
+ * @param request - 请求参数
32
+ * @returns Promise,解析为标准响应格式
33
+ */
34
+ batchDeleteBizRelation(request: Service.Request.batchDeleteBizRelation): Promise<StandardResponse<Service.Response.batchDeleteBizRelation>>;
35
+ /**
36
+ * 根据标签分组和关联主体查询关联对象(查询商品/直播间圈选的门店)
37
+ * @param request - 请求参数
38
+ * @returns Promise,解析为标准响应格式
39
+ */
40
+ queryRelatedByGroupAndSubject(request: Service.Request.queryRelatedByGroupAndSubject): Promise<StandardResponse<Service.Response.queryRelatedByGroupAndSubject>>;
41
+ /**
42
+ * 根据标签分组和关联对象查询关联主体(查询门店关联的商品/直播间)
43
+ * @param request - 请求参数
44
+ * @returns Promise,解析为标准响应格式
45
+ */
46
+ querySubjectsByGroupAndRelated(request: Service.Request.querySubjectsByGroupAndRelated): Promise<StandardResponse<Service.Response.querySubjectsByGroupAndRelated>>;
47
+ }