shcp-api-lib 1.0.1 → 1.0.2
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.
- package/dist/index.d.ts +543 -0
- package/dist/index.esm.js +643 -319
- package/dist/index.esm.js.map +1 -1
- package/dist/index.js +643 -319
- package/dist/index.js.map +1 -1
- package/dist/types/src/api/app-client-page-config-api.d.ts +4 -0
- package/dist/types/src/api/app-client-setting-api.d.ts +4 -0
- package/dist/types/src/api/common-dict-api.d.ts +4 -0
- package/dist/types/src/api/common-right-api.d.ts +28 -0
- package/dist/types/src/api/consumer-api.d.ts +92 -0
- package/dist/types/src/api/consumer-bind-api.d.ts +32 -0
- package/dist/types/src/api/consumer-favorite-api.d.ts +16 -0
- package/dist/types/src/api/health-common-api.d.ts +40 -0
- package/dist/types/src/api/health-metric-api.d.ts +20 -0
- package/dist/types/src/api/health-profile-api.d.ts +16 -0
- package/dist/types/src/api/health-self-assess-api.d.ts +12 -0
- package/dist/types/src/api/help-center.d.ts +4 -0
- package/dist/types/src/api/im-user-api.d.ts +12 -0
- package/dist/types/src/api/km-article-api.d.ts +15 -0
- package/dist/types/src/api/km-form-api.d.ts +4 -0
- package/dist/types/src/api/km-form-rule-relation-api.d.ts +8 -0
- package/dist/types/src/api/login-api.d.ts +28 -0
- package/dist/types/src/api/marketing-api.d.ts +48 -0
- package/dist/types/src/api/message-record-api.d.ts +12 -0
- package/dist/types/src/api/mine-api.d.ts +16 -0
- package/dist/types/src/api/right-qrcode-api.d.ts +20 -0
- package/dist/types/src/api/right-service-config-api.d.ts +44 -0
- package/dist/types/src/api/system-right-api.d.ts +32 -0
- package/dist/types/src/api/user-group-api.d.ts +32 -0
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
@@ -5208,14 +5208,26 @@ declare class AppClientApi {
|
|
5208
5208
|
}
|
5209
5209
|
|
5210
5210
|
declare class AppClientPageConfigApi {
|
5211
|
+
/**
|
5212
|
+
* 查询列表
|
5213
|
+
* URL: /api/blade-system/${ShcpApiSdk.getApiSuffix()}/appClient/pageConfig/list
|
5214
|
+
*/
|
5211
5215
|
static getList(data: AppClientPageConfigQuery): Promise<CommonRes<AppClientPageConfigDTO[]>>;
|
5212
5216
|
}
|
5213
5217
|
|
5214
5218
|
declare class AppClientSettingApi {
|
5219
|
+
/**
|
5220
|
+
* 查询单个
|
5221
|
+
* URL: /api/blade-system/${ShcpApiSdk.getApiSuffix()}/appClient/setting/get
|
5222
|
+
*/
|
5215
5223
|
static get(data: AppClientSettingQuery): Promise<CommonRes<AppClientSettingDTO>>;
|
5216
5224
|
}
|
5217
5225
|
|
5218
5226
|
declare class CommonDictApi {
|
5227
|
+
/**
|
5228
|
+
* 查询单个详情
|
5229
|
+
* URL: /api/blade-system/dict/detail
|
5230
|
+
*/
|
5219
5231
|
static getDetail(data: DictBiz): Promise<CommonRes<DictBizVO>>;
|
5220
5232
|
/**
|
5221
5233
|
* 列表
|
@@ -5260,11 +5272,35 @@ declare class FileApi {
|
|
5260
5272
|
}
|
5261
5273
|
|
5262
5274
|
declare class CommonRightApi {
|
5275
|
+
/**
|
5276
|
+
* 获取权益列表
|
5277
|
+
* URL: /api/shcp-healthcare/${ShcpApiSdk.getApiSuffix()}/right/list
|
5278
|
+
*/
|
5263
5279
|
static getRightList(data: RightRequest): Promise<CommonRes<RightDTO[]>>;
|
5280
|
+
/**
|
5281
|
+
* 服务流程分页查询
|
5282
|
+
* URL: /api/shcp-healthcare/${ShcpApiSdk.getApiSuffix()}/serviceFlow/page
|
5283
|
+
*/
|
5264
5284
|
static flowPage(data: ServiceFlowQuery): Promise<CommonRes<PagedList<ServiceFlowDTO>>>;
|
5285
|
+
/**
|
5286
|
+
* 服务任务分页查询
|
5287
|
+
* URL: /api/shcp-healthcare/${ShcpApiSdk.getApiSuffix()}/serviceTask/page
|
5288
|
+
*/
|
5265
5289
|
static taskPage(data: ServiceTaskQuery): Promise<CommonRes<PagedList<ServiceFlowDTO>>>;
|
5290
|
+
/**
|
5291
|
+
* 服务流程.列表查询
|
5292
|
+
* URL: /api/shcp-healthcare/${ShcpApiSdk.getApiSuffix()}/serviceFlow/list
|
5293
|
+
*/
|
5266
5294
|
static listServiceFlow(query: ServiceFlowQuery): Promise<CommonRes<ServiceFlowDTO[]>>;
|
5295
|
+
/**
|
5296
|
+
* 服务流程配置详情
|
5297
|
+
* URL: /api/shcp-healthcare/${ShcpApiSdk.getApiSuffix()}/serviceFlow/config/detail
|
5298
|
+
*/
|
5267
5299
|
static detailServiceFlowConfig(flowId: number | string): Promise<CommonRes<ServiceFlowConfigDTO>>;
|
5300
|
+
/**
|
5301
|
+
* 服务任务用户分页查询
|
5302
|
+
* URL: /api/shcp-healthcare/${ShcpApiSdk.getApiSuffix()}/serviceTask/user/page
|
5303
|
+
*/
|
5268
5304
|
static pageServiceTaskUser(data: ServiceTaskQuery): Promise<CommonRes<ServiceTaskUserCountDTO>>;
|
5269
5305
|
/**
|
5270
5306
|
* 任务维度
|
@@ -5281,6 +5317,10 @@ declare class CommonRightApi {
|
|
5281
5317
|
* URL: /api/shcp-healthcare/${ShcpApiSdk.getApiSuffix()}/metricException/update
|
5282
5318
|
*/
|
5283
5319
|
static updateMetricException(data: MetricExceptionUpdateRequests): Promise<CommonRes<MetricExceptionDTO>>;
|
5320
|
+
/**
|
5321
|
+
* 通用任务启动
|
5322
|
+
* URL: /api/shcp-healthcare/${ShcpApiSdk.getApiSuffix()}/${serviceTypeEnName}/start
|
5323
|
+
*/
|
5284
5324
|
static commonTaskStart(serviceTypeEnName: string, data: {
|
5285
5325
|
consumerId: string | number;
|
5286
5326
|
rightId: string | number;
|
@@ -5319,30 +5359,122 @@ declare class CommonRightApi {
|
|
5319
5359
|
}
|
5320
5360
|
|
5321
5361
|
declare class ConsumerApi {
|
5362
|
+
/**
|
5363
|
+
* 获取医生列表
|
5364
|
+
* URL: /api/shcp-consumer/${ShcpApiSdk.getApiSuffix()}/consumerRight/listDoctor
|
5365
|
+
*/
|
5322
5366
|
static getDoctorList(data: ConsumerRightDoctorQuery): Promise<CommonRes<ConsumerRightDoctorDTO[]>>;
|
5367
|
+
/**
|
5368
|
+
* 获取成员分页
|
5369
|
+
* URL: /api/shcp-consumer/${ShcpApiSdk.getApiSuffix()}/consumer/group/member/page
|
5370
|
+
*/
|
5323
5371
|
static getMemberPage(data: ConsumerGroupMemberQuery): Promise<CommonRes<PagedList<ConsumerGroupMemberDTO>>>;
|
5372
|
+
/**
|
5373
|
+
* 批量新增
|
5374
|
+
* URL: /api/shcp-consumer/${ShcpApiSdk.getApiSuffix()}/consumer/group/member/create
|
5375
|
+
*/
|
5324
5376
|
static batchCreateMember(data: ConsumerGroupMemberCreateRequest[]): Promise<CommonRes<ConsumerGroupMemberDTO[]>>;
|
5377
|
+
/**
|
5378
|
+
* 列表查询成员
|
5379
|
+
* URL: /api/shcp-consumer/${ShcpApiSdk.getApiSuffix()}/consumer/group/member/list
|
5380
|
+
*/
|
5325
5381
|
static listMember(data: ConsumerGroupMemberQuery): Promise<CommonRes<ConsumerGroupMemberDTO[]>>;
|
5382
|
+
/**
|
5383
|
+
* 更新成员
|
5384
|
+
* URL: /api/shcp-consumer/${ShcpApiSdk.getApiSuffix()}/consumer/group/member/update
|
5385
|
+
*/
|
5326
5386
|
static updateMember(data: ConsumerGroupMemberUpdateRequest): Promise<CommonRes<ConsumerGroupMemberDTO>>;
|
5387
|
+
/**
|
5388
|
+
* 获取组详情
|
5389
|
+
* URL: /api/shcp-consumer/${ShcpApiSdk.getApiSuffix()}/consumer/group/detail
|
5390
|
+
*/
|
5327
5391
|
static getGroupDetail(id: number): Promise<CommonRes<ConsumerGroupDTO>>;
|
5392
|
+
/**
|
5393
|
+
* 获取组分页
|
5394
|
+
* URL: /api/shcp-consumer/${ShcpApiSdk.getApiSuffix()}/consumer/group/page
|
5395
|
+
*/
|
5328
5396
|
static getGroupPage(data: ConsumerGroupQuery): Promise<CommonRes<PagedList<ConsumerGroupDTO>>>;
|
5397
|
+
/**
|
5398
|
+
* 根据ID列表查询
|
5399
|
+
* URL: /api/shcp-consumer/${ShcpApiSdk.getApiSuffix()}/consumer/group/listByIds
|
5400
|
+
*/
|
5329
5401
|
static getListByIds(data: ConsumerGroupQuery): Promise<CommonRes<ConsumerGroupDTO>>;
|
5402
|
+
/**
|
5403
|
+
* 获取树形结构
|
5404
|
+
* URL: /api/shcp-consumer/${ShcpApiSdk.getApiSuffix()}/consumer/group/tree
|
5405
|
+
*/
|
5330
5406
|
static getTree(data: {
|
5331
5407
|
rootId: number | string;
|
5332
5408
|
}): Promise<CommonRes<ConsumerGroupDTO>>;
|
5409
|
+
/**
|
5410
|
+
* 更新组
|
5411
|
+
* URL: /api/shcp-consumer/${ShcpApiSdk.getApiSuffix()}/consumer/group/update
|
5412
|
+
*/
|
5333
5413
|
static updateGroup(data: ConsumerGroupUpdateRequest): Promise<CommonRes<ConsumerGroupDTO>>;
|
5414
|
+
/**
|
5415
|
+
* 创建组
|
5416
|
+
* URL: /api/shcp-consumer/${ShcpApiSdk.getApiSuffix()}/consumer/group/create
|
5417
|
+
*/
|
5334
5418
|
static createGroup(data: ConsumerGroupUpdateRequest): Promise<CommonRes<ConsumerGroupDTO>>;
|
5419
|
+
/**
|
5420
|
+
* 删除组
|
5421
|
+
* URL: /api/shcp-consumer/${ShcpApiSdk.getApiSuffix()}/consumer/group/delete
|
5422
|
+
*/
|
5335
5423
|
static deleteGroup(data: ConsumerGroupDeleteRequest): Promise<CommonRes<boolean>>;
|
5424
|
+
/**
|
5425
|
+
* 更新消费者
|
5426
|
+
* URL: /api/shcp-consumer/${ShcpApiSdk.getApiSuffix()}/consumer/update
|
5427
|
+
*/
|
5336
5428
|
static update(data: ConsumerUpdateRequest): Promise<CommonRes<ConsumerDTO>>;
|
5429
|
+
/**
|
5430
|
+
* 创建消费者
|
5431
|
+
* URL: /api/shcp-consumer/${ShcpApiSdk.getApiSuffix()}/consumer/create
|
5432
|
+
*/
|
5337
5433
|
static create(data: ConsumerCreateRequest): Promise<CommonRes<ConsumerDTO>>;
|
5434
|
+
/**
|
5435
|
+
* 查询消费者列表
|
5436
|
+
* URL: /api/shcp-consumer/${ShcpApiSdk.getApiSuffix()}/consumer/list
|
5437
|
+
*/
|
5338
5438
|
static list(data: ConsumerQuery): Promise<CommonRes<ConsumerDTO[]>>;
|
5439
|
+
/**
|
5440
|
+
* 查询单个消费者
|
5441
|
+
* URL: /api/shcp-consumer/${ShcpApiSdk.getApiSuffix()}/consumer/get
|
5442
|
+
*/
|
5339
5443
|
static get(data: ConsumerQuery): Promise<CommonRes<ConsumerDTO>>;
|
5444
|
+
/**
|
5445
|
+
* 查询消费用户权益
|
5446
|
+
* URL: /api/shcp-consumer/${ShcpApiSdk.getApiSuffix()}/consumerRight/detail
|
5447
|
+
*/
|
5340
5448
|
static getRightDetail(id: number): Promise<CommonRes<ConsumerRightDTO>>;
|
5449
|
+
/**
|
5450
|
+
* 查询消费用户权益
|
5451
|
+
* URL: /api/shcp-consumer/${ShcpApiSdk.getApiSuffix()}/consumerRight/get
|
5452
|
+
*/
|
5341
5453
|
static getRight(data: ConsumerRightQuery): Promise<CommonRes<ConsumerRightDTO>>;
|
5454
|
+
/**
|
5455
|
+
* 查询消费用户权益
|
5456
|
+
* URL: /api/shcp-consumer/${ShcpApiSdk.getApiSuffix()}/consumerRight/list
|
5457
|
+
*/
|
5342
5458
|
static getRightList(data: ConsumerRightQuery): Promise<CommonRes<ConsumerRightDTO[]>>;
|
5459
|
+
/**
|
5460
|
+
* 查询消费用户权益
|
5461
|
+
* URL: /api/shcp-consumer/${ShcpApiSdk.getApiSuffix()}/consumerRight/page
|
5462
|
+
*/
|
5343
5463
|
static getRightPage(data: ConsumerRightQuery): Promise<CommonRes<PagedList<ConsumerRightDTO>>>;
|
5464
|
+
/**
|
5465
|
+
* 创建消费用户权益
|
5466
|
+
* URL: /api/shcp-consumer/${ShcpApiSdk.getApiSuffix()}/consumerRight/create
|
5467
|
+
*/
|
5344
5468
|
static createRight(data: ConsumerRightCreateRequest): Promise<CommonRes<ConsumerRightDTO>>;
|
5469
|
+
/**
|
5470
|
+
* 批量创建消费用户权益
|
5471
|
+
* URL: /api/shcp-consumer/${ShcpApiSdk.getApiSuffix()}/consumerRight/batchCreate
|
5472
|
+
*/
|
5345
5473
|
static batchCreateRight(data: ConsumerRightCreateRequest[]): Promise<CommonRes<ConsumerRightDTO[]>>;
|
5474
|
+
/**
|
5475
|
+
* 删除消费用户权益
|
5476
|
+
* URL: /api/shcp-consumer/${ShcpApiSdk.getApiSuffix()}/consumerRight/delete
|
5477
|
+
*/
|
5346
5478
|
static deleteRight(data: ConsumerRightDeleteRequest): Promise<CommonRes<boolean>>;
|
5347
5479
|
}
|
5348
5480
|
declare const crudConsumerGroupApi: {
|
@@ -5357,16 +5489,48 @@ declare const crudConsumerApi: {
|
|
5357
5489
|
};
|
5358
5490
|
|
5359
5491
|
declare class ConsumerBindApi {
|
5492
|
+
/**
|
5493
|
+
* 更改
|
5494
|
+
* URL: /api/shcp-consumer/consumerBind/update
|
5495
|
+
*/
|
5360
5496
|
static update(data: ConsumerBindUpdateRequest): Promise<CommonRes<ConsumerBindDTO>>;
|
5497
|
+
/**
|
5498
|
+
* 新增
|
5499
|
+
* URL: /api/shcp-consumer/consumerBind/bind
|
5500
|
+
*/
|
5361
5501
|
static create(data: ConsumerBindCreateRequest): Promise<CommonRes<ConsumerBindDTO>>;
|
5502
|
+
/**
|
5503
|
+
* 删除
|
5504
|
+
* URL: /api/shcp-consumer/consumerBind/delete
|
5505
|
+
*/
|
5362
5506
|
static delete(data: ConsumerBindDeleteRequest): Promise<CommonRes<any>>;
|
5507
|
+
/**
|
5508
|
+
* 设备用户绑定的消费用户列表
|
5509
|
+
* URL: /api/shcp-consumer/consumerBind/list
|
5510
|
+
*/
|
5363
5511
|
static getList(params: ConsumerBindQuery): Promise<CommonRes<ConsumerBindDTO[]>>;
|
5512
|
+
/**
|
5513
|
+
* 发送绑定用户验证码
|
5514
|
+
* URL: /api/shcp-consumer/consumerBind/sendSMSCode
|
5515
|
+
*/
|
5364
5516
|
static sendSMSCode(params: ConsumerBindSendSmsCodeRequest): Promise<CommonRes<any>>;
|
5517
|
+
/**
|
5518
|
+
* 验证码校验
|
5519
|
+
* URL: /api/shcp-consumer/consumerBind/verifySMSCode
|
5520
|
+
*/
|
5365
5521
|
static verifySMSCode(params: {
|
5366
5522
|
code: string;
|
5367
5523
|
phone: string;
|
5368
5524
|
}): Promise<CommonRes<any>>;
|
5525
|
+
/**
|
5526
|
+
* 激活
|
5527
|
+
* URL: /api/shcp-consumer/consumerBind/active
|
5528
|
+
*/
|
5369
5529
|
static active(data: ConsumerBindActiveRequest): Promise<CommonRes<ConsumerBindDTO>>;
|
5530
|
+
/**
|
5531
|
+
* 单个查询
|
5532
|
+
* URL: /api/shcp-consumer/consumerBind/get
|
5533
|
+
*/
|
5370
5534
|
static get(params: ConsumerBindQuery): Promise<CommonRes<ConsumerBindDTO>>;
|
5371
5535
|
}
|
5372
5536
|
|
@@ -5394,9 +5558,25 @@ declare class ConsumerDeviceApi {
|
|
5394
5558
|
}
|
5395
5559
|
|
5396
5560
|
declare class ConsumerFavoriteApi {
|
5561
|
+
/**
|
5562
|
+
* 消费用户收藏列表
|
5563
|
+
* URL: /api/shcp-consumer/${ShcpApiSdk.getApiSuffix()}/consumer/favorite/page
|
5564
|
+
*/
|
5397
5565
|
static getPage(data: ConsumerFavoriteQuery): Promise<CommonRes<PagedList<ConsumerFavoriteDTO>>>;
|
5566
|
+
/**
|
5567
|
+
* 创建消费用户收藏
|
5568
|
+
* URL: /api/shcp-consumer/${ShcpApiSdk.getApiSuffix()}/consumer/favorite/create
|
5569
|
+
*/
|
5398
5570
|
static create(data: ConsumerFavoriteCreateRequest): Promise<CommonRes<any>>;
|
5571
|
+
/**
|
5572
|
+
* 检查是否收藏
|
5573
|
+
* URL: /api/shcp-consumer/${ShcpApiSdk.getApiSuffix()}/consumer/favorite/checkFavorite
|
5574
|
+
*/
|
5399
5575
|
static checkFavorite(params: ConsumerFavoriteQuery): Promise<CommonRes<any>>;
|
5576
|
+
/**
|
5577
|
+
* 取消收藏
|
5578
|
+
* URL: /api/shcp-consumer/${ShcpApiSdk.getApiSuffix()}/consumer/favorite/delete
|
5579
|
+
*/
|
5400
5580
|
static delete(data: ConsumerFavoriteDeleteRequest): Promise<CommonRes<any>>;
|
5401
5581
|
}
|
5402
5582
|
|
@@ -5468,36 +5648,124 @@ declare const diseaseOpApi: HealthCareOpApi;
|
|
5468
5648
|
declare const diseaseExceptionOpApi: HealthCareOpApi;
|
5469
5649
|
|
5470
5650
|
declare class HealthCommonApi {
|
5651
|
+
/**
|
5652
|
+
* 服务流程.分页查询
|
5653
|
+
* URL: /api/shcp-healthcare/${ShcpApiSdk.getApiSuffix()}/serviceFlow/page
|
5654
|
+
*/
|
5471
5655
|
static pageServiceFlow(data: ServiceFlowQuery): Promise<CommonRes<PagedList<ServiceFlowDTO>>>;
|
5656
|
+
/**
|
5657
|
+
* 服务流程.统计, 用户所参与流程统计
|
5658
|
+
* URL: /api/shcp-healthcare/${ShcpApiSdk.getApiSuffix()}/serviceFlow/statistics
|
5659
|
+
*/
|
5472
5660
|
static statsServiceFlow(data: ServiceFlowStatisticsQuery): Promise<CommonRes<ServiceFlowStatisticsDTO[]>>;
|
5661
|
+
/**
|
5662
|
+
* 服务任务的权益.列表查询, 列表查询
|
5663
|
+
* URL: /api/shcp-healthcare/${ShcpApiSdk.getApiSuffix()}/serviceTask/right/list
|
5664
|
+
*/
|
5473
5665
|
static listServiceTaskRight(data: ServiceTaskRightQuery): Promise<CommonRes<RightDTO[]>>;
|
5666
|
+
/**
|
5667
|
+
* 服务任务.分页查询
|
5668
|
+
* URL: /api/shcp-healthcare/${ShcpApiSdk.getApiSuffix()}/serviceTask/page
|
5669
|
+
*/
|
5474
5670
|
static pageServiceTask(data: ServiceTaskQuery): Promise<CommonRes<PagedList<ServiceTaskDTO>>>;
|
5671
|
+
/**
|
5672
|
+
* 服务任务.单个查询(按ID)
|
5673
|
+
* URL: /api/shcp-healthcare/${ShcpApiSdk.getApiSuffix()}/serviceTask/detail
|
5674
|
+
*/
|
5475
5675
|
static detailServiceTask(id: number): Promise<CommonRes<ServiceTaskDTO>>;
|
5676
|
+
/**
|
5677
|
+
* 服务任务.单个查询(按条件)
|
5678
|
+
* URL: /api/shcp-healthcare/${ShcpApiSdk.getApiSuffix()}/serviceTask/get
|
5679
|
+
*/
|
5476
5680
|
static getServiceTask(data: ServiceTaskQuery): Promise<CommonRes<ServiceTaskDTO>>;
|
5681
|
+
/**
|
5682
|
+
* 服务任务.统计, 用户所参与任务统计
|
5683
|
+
* URL: /api/shcp-healthcare/${ShcpApiSdk.getApiSuffix()}/serviceTask/statistics
|
5684
|
+
*/
|
5477
5685
|
static statsServiceTask(data: ServiceTaskStatisticsQuery): Promise<CommonRes<ServiceTaskStatisticsDTO[]>>;
|
5686
|
+
/**
|
5687
|
+
* 健康指标趋势.列表查询
|
5688
|
+
* URL: /api/shcp-healthcare/${ShcpApiSdk.getApiSuffix()}/healthMetricTrend/list
|
5689
|
+
*/
|
5478
5690
|
static listMetricTrend(data: HealthMetricTrendQuery): Promise<CommonRes<HealthMetricTrendDTO[]>>;
|
5691
|
+
/**
|
5692
|
+
* 指标异常记录.分页查询, 任务维度
|
5693
|
+
* URL: /api/shcp-healthcare/${ShcpApiSdk.getApiSuffix()}/metricException/page
|
5694
|
+
*/
|
5479
5695
|
static metricExceptionPage(data: MetricExceptionQuery): Promise<CommonRes<PagedList<MetricExceptionDTO>>>;
|
5696
|
+
/**
|
5697
|
+
* 指标异常记录.用户分页查询, 用户维度
|
5698
|
+
* URL: /api/shcp-healthcare/${ShcpApiSdk.getApiSuffix()}/metricException/user/page
|
5699
|
+
*/
|
5480
5700
|
static metricExceptionUserPage(data: MetricExceptionQuery): Promise<CommonRes<MetricExceptionUserCountDTO>>;
|
5481
5701
|
}
|
5482
5702
|
|
5483
5703
|
declare class HealthMetricApi {
|
5704
|
+
/**
|
5705
|
+
* 获取健康指标
|
5706
|
+
* URL: /api/shcp-healthcare/${ShcpApiSdk.getApiSuffix()}/healthMetric/get
|
5707
|
+
*/
|
5484
5708
|
static getMetric(data: HealthMetricQuery): Promise<CommonRes<HealthMetricDTO>>;
|
5709
|
+
/**
|
5710
|
+
* 获取健康指标列表
|
5711
|
+
* URL: /api/shcp-healthcare/${ShcpApiSdk.getApiSuffix()}/healthMetric/list
|
5712
|
+
*/
|
5485
5713
|
static listMetric(data: HealthMetricQuery): Promise<CommonRes<HealthMetricDTO[]>>;
|
5714
|
+
/**
|
5715
|
+
* 健康指标分页查询
|
5716
|
+
* URL: /api/shcp-healthcare/${ShcpApiSdk.getApiSuffix()}/healthMetric/page
|
5717
|
+
*/
|
5486
5718
|
static pageMetric(data: HealthMetricQuery): Promise<CommonRes<PagedList<HealthMetricDTO>>>;
|
5719
|
+
/**
|
5720
|
+
* 健康指标趋势列表
|
5721
|
+
* URL: /api/shcp-healthcare/${ShcpApiSdk.getApiSuffix()}/healthMetricTrend/list
|
5722
|
+
*/
|
5487
5723
|
static listTrend(data: HealthMetricTrendQuery): Promise<CommonRes<HealthMetricTrendDTO[]>>;
|
5724
|
+
/**
|
5725
|
+
* 健康指标日志列表
|
5726
|
+
* URL: /api/shcp-healthcare/${ShcpApiSdk.getApiSuffix()}/healthMetricLog/list
|
5727
|
+
*/
|
5488
5728
|
static listLog(data: HealthMetricQuery): Promise<CommonRes<HealthMetricLogDTO[]>>;
|
5489
5729
|
}
|
5490
5730
|
|
5491
5731
|
declare class HealthProfileApi {
|
5732
|
+
/**
|
5733
|
+
* 获取日记任务
|
5734
|
+
* URL: /api/shcp-healthcare/${ShcpApiSdk.getApiSuffix()}/healthProfile/diaryTask/fetch
|
5735
|
+
*/
|
5492
5736
|
static fetchDiaryTask(data: DiaryTaskFetch): Promise<CommonRes<DiaryTaskDTO>>;
|
5737
|
+
/**
|
5738
|
+
* 提交日记任务
|
5739
|
+
* URL: /api/shcp-healthcare/${ShcpApiSdk.getApiSuffix()}/healthProfile/diaryTask/submit
|
5740
|
+
*/
|
5493
5741
|
static submitDiaryTask(data: DiaryTaskSubmit): Promise<CommonRes<boolean>>;
|
5742
|
+
/**
|
5743
|
+
* 提交报告任务
|
5744
|
+
* URL: /api/shcp-healthcare/${ShcpApiSdk.getApiSuffix()}/healthProfile/reportTask/submit
|
5745
|
+
*/
|
5494
5746
|
static submitReportTask(data: ReportTaskSubmit): Promise<CommonRes<ReportTaskDTO>>;
|
5747
|
+
/**
|
5748
|
+
* 获取报告任务
|
5749
|
+
* URL: /api/shcp-healthcare/${ShcpApiSdk.getApiSuffix()}/healthProfile/reportTask/fetch
|
5750
|
+
*/
|
5495
5751
|
static fetchReportTask(data: ReportTaskFetch): Promise<CommonRes<ReportTaskDTO>>;
|
5496
5752
|
}
|
5497
5753
|
|
5498
5754
|
declare class HealthSelfAssessApi {
|
5755
|
+
/**
|
5756
|
+
* 启动健康自评
|
5757
|
+
* URL: /api/shcp-healthcare/${ShcpApiSdk.getApiSuffix()}/healthSelfAssess/start
|
5758
|
+
*/
|
5499
5759
|
static start(data: ServiceStartRequest): Promise<CommonRes<AssessmentTaskDTO>>;
|
5760
|
+
/**
|
5761
|
+
* 提交评估任务
|
5762
|
+
* URL: /api/shcp-healthcare/${ShcpApiSdk.getApiSuffix()}/healthSelfAssess/task/submit
|
5763
|
+
*/
|
5500
5764
|
static submitTask(data: ServiceTaskRequests.Submit): Promise<CommonRes<boolean>>;
|
5765
|
+
/**
|
5766
|
+
* 获取评估任务
|
5767
|
+
* URL: /api/shcp-healthcare/${ShcpApiSdk.getApiSuffix()}/healthSelfAssess/task/fetch
|
5768
|
+
*/
|
5501
5769
|
static fetchTask(data: ServiceTaskRequests.Fetch): Promise<CommonRes<AssessmentTaskDTO>>;
|
5502
5770
|
}
|
5503
5771
|
|
@@ -5537,24 +5805,59 @@ declare class HealthToolApi {
|
|
5537
5805
|
}
|
5538
5806
|
|
5539
5807
|
declare class HelpCenterApi {
|
5808
|
+
/**
|
5809
|
+
* 获取帮助中心配置
|
5810
|
+
* URL: /api/blade-system/${ShcpApiSdk.getApiSuffix()}/helpCenter/get
|
5811
|
+
*/
|
5540
5812
|
static getConfig(clientType: string | number): Promise<CommonRes<any>>;
|
5541
5813
|
}
|
5542
5814
|
|
5543
5815
|
declare class ImUserApi {
|
5816
|
+
/**
|
5817
|
+
* 用户登录
|
5818
|
+
* URL: /api/shcp-message/${ShcpApiSdk.getApiSuffix()}/message/im/login
|
5819
|
+
*/
|
5544
5820
|
static login(data: IMUserRequest): Promise<CommonRes<IMUserDTO>>;
|
5821
|
+
/**
|
5822
|
+
* 获取对话用户信息
|
5823
|
+
* URL: /api/shcp-message/${ShcpApiSdk.getApiSuffix()}/message/im/getUser
|
5824
|
+
*/
|
5545
5825
|
static getUser(data: IMUserRequest): Promise<CommonRes<IMUserDTO>>;
|
5826
|
+
/**
|
5827
|
+
* 获取对话用户信息
|
5828
|
+
* URL: /api/shcp-message/${ShcpApiSdk.getApiSuffix()}/message/im/getUserList
|
5829
|
+
*/
|
5546
5830
|
static getUserList(data: IMUserQuery): Promise<CommonRes<IMUserDTO[]>>;
|
5547
5831
|
}
|
5548
5832
|
|
5549
5833
|
declare class KmArticleApi {
|
5834
|
+
/**
|
5835
|
+
* 查询文章分类树
|
5836
|
+
*/
|
5550
5837
|
static getCategoryTree(data: ArticleCategoryTreeRequest): Promise<CommonRes<ArticleCategoryDTO>>;
|
5838
|
+
/**
|
5839
|
+
* 查询文章分页列表
|
5840
|
+
*/
|
5551
5841
|
static getPage(data: ArticleQuery): Promise<CommonRes<PagedList<ArticleDTO>>>;
|
5842
|
+
/**
|
5843
|
+
* 文章内容查询
|
5844
|
+
*/
|
5552
5845
|
static getContent(id: number | string): Promise<CommonRes<ArticleDTO>>;
|
5846
|
+
/**
|
5847
|
+
* 查询标签分类树
|
5848
|
+
*/
|
5553
5849
|
static getTagCategoryTree(data: ArticleCategoryTreeRequest): Promise<CommonRes<ArticleCategoryDTO>>;
|
5850
|
+
/**
|
5851
|
+
* 查询标签分页列表
|
5852
|
+
*/
|
5554
5853
|
static getTagPage(data: ArticleTagQuery): Promise<CommonRes<PagedList<ArticleTagDTO>>>;
|
5555
5854
|
}
|
5556
5855
|
|
5557
5856
|
declare class KmFormApi {
|
5857
|
+
/**
|
5858
|
+
* 获取表单内容
|
5859
|
+
* URL: /api/shcp-km/${ShcpApiSdk.getApiSuffix()}/form/content/query
|
5860
|
+
*/
|
5558
5861
|
static getContent(formId: number | string): Promise<CommonRes<KMForm.FormResultDTO>>;
|
5559
5862
|
/**
|
5560
5863
|
* 根据用户传参进行智能辅助填充
|
@@ -5564,100 +5867,340 @@ declare class KmFormApi {
|
|
5564
5867
|
}
|
5565
5868
|
|
5566
5869
|
declare class KmFormRuleRelationApi {
|
5870
|
+
/**
|
5871
|
+
* 单个查询
|
5872
|
+
* URL: /api/shcp-km/${ShcpApiSdk.getApiSuffix()}/form/rule/get
|
5873
|
+
*/
|
5567
5874
|
static get(data: FormRuleRelationQuery): Promise<CommonRes<FormRuleRelationDTO>>;
|
5875
|
+
/**
|
5876
|
+
* 列表查询
|
5877
|
+
* URL: /api/shcp-km/${ShcpApiSdk.getApiSuffix()}/form/rule/list
|
5878
|
+
*/
|
5568
5879
|
static getList(data: FormRuleRelationQuery): Promise<CommonRes<FormRuleRelationDTO[]>>;
|
5569
5880
|
}
|
5570
5881
|
|
5571
5882
|
declare class LoginApi {
|
5883
|
+
/**
|
5884
|
+
* 新增
|
5885
|
+
* URL: /api/blade-system/${ShcpApiSdk.getApiSuffix()}/potentialCustomer/create
|
5886
|
+
*/
|
5572
5887
|
static createApplyAccount(data: PotentialCustomerCreateRequest): Promise<CommonRes<PotentialCustomerDTO>>;
|
5888
|
+
/**
|
5889
|
+
* 获取申请结果
|
5890
|
+
* URL: /api/blade-system/${ShcpApiSdk.getApiSuffix()}/salesConfig/get
|
5891
|
+
*/
|
5573
5892
|
static getApplyResult(): Promise<CommonRes<SaleDTO>>;
|
5893
|
+
/**
|
5894
|
+
* 刷新token
|
5895
|
+
* URL: /api/blade-auth/oauth/token
|
5896
|
+
*/
|
5574
5897
|
static refreshToken(data: {
|
5575
5898
|
tenantId: string;
|
5576
5899
|
refresh_token: string;
|
5577
5900
|
}): any;
|
5901
|
+
/**
|
5902
|
+
* 用户登录
|
5903
|
+
* URL: /api/blade-auth/oauth/token
|
5904
|
+
*/
|
5578
5905
|
static toLogin(data: {
|
5579
5906
|
tenantId: string;
|
5580
5907
|
username: string;
|
5581
5908
|
password: string;
|
5582
5909
|
}): any;
|
5910
|
+
/**
|
5911
|
+
* 应用客户端登录
|
5912
|
+
* URL: /api/blade-auth/appClient/login
|
5913
|
+
*/
|
5583
5914
|
static appClientLogin(data: AppClientLoginRequest): Promise<CommonRes<any>>;
|
5915
|
+
/**
|
5916
|
+
* 获取租户列表
|
5917
|
+
* URL: /api/blade-system/tenant/selectTenant
|
5918
|
+
*/
|
5584
5919
|
static getTenantList(): Promise<CommonRes<Tenant>>;
|
5920
|
+
/**
|
5921
|
+
* 获取关联租户列表
|
5922
|
+
* URL: /api/blade-system/${ShcpApiSdk.getApiSuffix()}/appClient/list
|
5923
|
+
*/
|
5585
5924
|
static getRelatedTenantList(relateTenantId: string): any;
|
5586
5925
|
}
|
5587
5926
|
|
5588
5927
|
declare class MarketingApi {
|
5928
|
+
/**
|
5929
|
+
* 保存营销内容
|
5930
|
+
* URL: /api/shcp-marketing/${ShcpApiSdk.getApiSuffix()}/marketing/content/save
|
5931
|
+
*/
|
5589
5932
|
static saveContent(data: MarketingContentCreateRequest): Promise<CommonRes<MarketingContentDTO[]>>;
|
5933
|
+
/**
|
5934
|
+
* 创建营销活动
|
5935
|
+
* URL: /api/shcp-marketing/${ShcpApiSdk.getApiSuffix()}/marketing/create
|
5936
|
+
*/
|
5590
5937
|
static create(data: MarketingCreateRequest): Promise<CommonRes<MarketingDTO>>;
|
5938
|
+
/**
|
5939
|
+
* 更新营销活动
|
5940
|
+
* URL: /api/shcp-marketing/${ShcpApiSdk.getApiSuffix()}/marketing/update
|
5941
|
+
*/
|
5591
5942
|
static update(data: MarketingUpdateRequest): Promise<CommonRes<MarketingDTO>>;
|
5943
|
+
/**
|
5944
|
+
* 获取营销活动分页
|
5945
|
+
* URL: /api/shcp-marketing/${ShcpApiSdk.getApiSuffix()}/marketing/page
|
5946
|
+
*/
|
5592
5947
|
static getPage(data: MarketingQuery): Promise<CommonRes<PagedList<MarketingDTO>>>;
|
5948
|
+
/**
|
5949
|
+
* 删除营销活动
|
5950
|
+
* URL: /api/shcp-marketing/${ShcpApiSdk.getApiSuffix()}/marketing/delete
|
5951
|
+
*/
|
5593
5952
|
static delete(data: MarketingDeleteRequest): Promise<CommonRes<void>>;
|
5953
|
+
/**
|
5954
|
+
* 获取营销活动详情
|
5955
|
+
* URL: /api/shcp-marketing/${ShcpApiSdk.getApiSuffix()}/marketing/detail
|
5956
|
+
*/
|
5594
5957
|
static getDetail(id: number): Promise<CommonRes<MarketingDTO>>;
|
5958
|
+
/**
|
5959
|
+
* 获取营销任务分页
|
5960
|
+
* URL: /api/shcp-marketing/${ShcpApiSdk.getApiSuffix()}/marketing/task/page
|
5961
|
+
*/
|
5595
5962
|
static getTaskPage(data: MarketingTaskQuery): Promise<CommonRes<PagedList<MarketingTaskDTO>>>;
|
5963
|
+
/**
|
5964
|
+
* 获取营销任务日志分页
|
5965
|
+
* URL: /api/shcp-marketing/${ShcpApiSdk.getApiSuffix()}/marketing/task/log/page
|
5966
|
+
*/
|
5596
5967
|
static getTaskLogPage(data: MarketingTaskLogQuery): Promise<CommonRes<PagedList<MarketingTaskLogDTO>>>;
|
5968
|
+
/**
|
5969
|
+
* 创建营销任务日志
|
5970
|
+
* URL: /api/shcp-marketing/${ShcpApiSdk.getApiSuffix()}/marketing/task/log/create
|
5971
|
+
*/
|
5597
5972
|
static createTaskLogs(data: MarketingTaskLogCreateRequest[]): Promise<CommonRes<MarketingTaskLogDTO[]>>;
|
5973
|
+
/**
|
5974
|
+
* 获取消息模板列表
|
5975
|
+
* URL: /api/shcp-marketing/${ShcpApiSdk.getApiSuffix()}/message/template/list
|
5976
|
+
*/
|
5598
5977
|
static getMessageTemplateList(data: MessageTemplateQuery): Promise<CommonRes<MessageTemplateDTO[]>>;
|
5978
|
+
/**
|
5979
|
+
* 获取消息模板详情
|
5980
|
+
* URL: /api/shcp-marketing/${ShcpApiSdk.getApiSuffix()}/message/template/detail
|
5981
|
+
*/
|
5599
5982
|
static getMessageTemplateDetail(id: number): Promise<CommonRes<MessageTemplateDTO>>;
|
5983
|
+
/**
|
5984
|
+
* 获取模版列表数据
|
5985
|
+
* URL: /api/shcp-marketing/${ShcpApiSdk.getApiSuffix()}/marketing/content/list
|
5986
|
+
*/
|
5600
5987
|
static getSendContent(data: marketingSendContentRequest): Promise<CommonRes<boolean>>;
|
5601
5988
|
}
|
5602
5989
|
|
5603
5990
|
declare class MessageRecordApi {
|
5991
|
+
/**
|
5992
|
+
* 获取消息记录详情
|
5993
|
+
* URL: /api/shcp-message/${ShcpApiSdk.getApiSuffix()}/message/record/detail
|
5994
|
+
*/
|
5604
5995
|
static getDetail(id: number): Promise<CommonRes<MessageRecordDTO>>;
|
5996
|
+
/**
|
5997
|
+
* 按天分组获取消息记录分页
|
5998
|
+
* URL: /api/shcp-message/${ShcpApiSdk.getApiSuffix()}/message/record/pageGroupedByDay
|
5999
|
+
*/
|
5605
6000
|
static getPageGroupedByDay(data: MessageRecordQuery): Promise<CommonRes<PagedList<WrapperMessageRecordDTO>>>;
|
6001
|
+
/**
|
6002
|
+
* 更新消息记录
|
6003
|
+
* URL: /api/shcp-message/${ShcpApiSdk.getApiSuffix()}/message/record/update
|
6004
|
+
*/
|
5606
6005
|
static update(data: MessageRecordUpdateRequest): Promise<CommonRes<boolean>>;
|
5607
6006
|
}
|
5608
6007
|
|
5609
6008
|
declare class MineApi {
|
6009
|
+
/**
|
6010
|
+
* 获取用户信息
|
6011
|
+
* URL: /api/blade-system/user/info
|
6012
|
+
*/
|
5610
6013
|
static getUserInfo: (id: string | number) => Promise<CommonRes<UserInfo>>;
|
6014
|
+
/**
|
6015
|
+
* 更新用户信息
|
6016
|
+
* URL: /api/blade-system/user/update-info
|
6017
|
+
*/
|
5611
6018
|
static updateInfo: (data: any) => Promise<any>;
|
6019
|
+
/**
|
6020
|
+
* 获取我的页面配置
|
6021
|
+
* URL: /api/blade-system/${ShcpApiSdk.getApiSuffix()}/appClient/pageConfig/get
|
6022
|
+
*/
|
5612
6023
|
static getMyPageConfig: (data: AppClientPageConfigQuery) => Promise<CommonRes<AppClientPageConfigDTO>>;
|
6024
|
+
/**
|
6025
|
+
* 获取详情内容
|
6026
|
+
* URL: /api/shcp-km/${ShcpApiSdk.getApiSuffix()}/article/content/query
|
6027
|
+
*/
|
5613
6028
|
static getArticleContent: (id: string) => Promise<any>;
|
5614
6029
|
}
|
5615
6030
|
|
5616
6031
|
declare class RightQrcodeApi {
|
6032
|
+
/**
|
6033
|
+
* 获取权益二维码分页
|
6034
|
+
* URL: /api/blade-system/${ShcpApiSdk.getApiSuffix()}/right/qrCode/page
|
6035
|
+
*/
|
5617
6036
|
static getPage(data: RightQrCodeRequest): Promise<CommonRes<PagedList<RightQrCodeDTO>>>;
|
6037
|
+
/**
|
6038
|
+
* 更新权益二维码
|
6039
|
+
* URL: /api/blade-system/${ShcpApiSdk.getApiSuffix()}/right/qrCode/update
|
6040
|
+
*/
|
5618
6041
|
static update(data: RightQrCodeUpdateRequest): Promise<CommonRes<RightQrCodeDTO>>;
|
6042
|
+
/**
|
6043
|
+
* 创建权益二维码
|
6044
|
+
* URL: /api/blade-system/${ShcpApiSdk.getApiSuffix()}/right/qrCode/create
|
6045
|
+
*/
|
5619
6046
|
static create(data: RightQrCodeCreateRequest): Promise<CommonRes<RightQrCodeDTO>>;
|
6047
|
+
/**
|
6048
|
+
* 删除权益二维码
|
6049
|
+
* URL: /api/blade-system/${ShcpApiSdk.getApiSuffix()}/right/qrCode/delete
|
6050
|
+
*/
|
5620
6051
|
static delete(ids: number[]): Promise<CommonRes<any>>;
|
6052
|
+
/**
|
6053
|
+
* 获取权益二维码详情
|
6054
|
+
* URL: /api/blade-system/${ShcpApiSdk.getApiSuffix()}/right/qrCode/detail
|
6055
|
+
*/
|
5621
6056
|
static getDetail(id: number | string): Promise<CommonRes<RightQrCodeDTO>>;
|
5622
6057
|
}
|
5623
6058
|
|
5624
6059
|
declare class RightServiceConfigApi {
|
6060
|
+
/**
|
6061
|
+
* 通用.查询单个(按ID)
|
6062
|
+
* URL: /api/blade-system/${ShcpApiSdk.getApiSuffix()}/right/serviceConfig/detail
|
6063
|
+
*/
|
5625
6064
|
static getDetail(id: number): Promise<CommonRes<RightServiceConfigDTO>>;
|
6065
|
+
/**
|
6066
|
+
* 通用.查询单个(按条件)
|
6067
|
+
* URL: /api/blade-system/${ShcpApiSdk.getApiSuffix()}/right/serviceConfig/get
|
6068
|
+
*/
|
5626
6069
|
static get(data: RightServiceConfigQuery): Promise<CommonRes<RightServiceConfigDTO>>;
|
6070
|
+
/**
|
6071
|
+
* 通用.查询列表
|
6072
|
+
* URL: /api/blade-system/${ShcpApiSdk.getApiSuffix()}/right/serviceConfig/list
|
6073
|
+
*/
|
5627
6074
|
static getList(data: RightServiceConfigQuery): Promise<CommonRes<RightServiceConfigDTO[]>>;
|
6075
|
+
/**
|
6076
|
+
* 慢病管理.查询单个(按ID)
|
6077
|
+
* URL: /api/blade-system/${ShcpApiSdk.getApiSuffix()}/right/serviceConfig/diseaseCare/detail
|
6078
|
+
*/
|
5628
6079
|
static getDiseaseCareDetail(id: number): Promise<CommonRes<DiseaseCareConfigDTO>>;
|
6080
|
+
/**
|
6081
|
+
* 慢病管理.查询单个(按条件)
|
6082
|
+
* URL: /api/blade-system/${ShcpApiSdk.getApiSuffix()}/right/serviceConfig/diseaseCare/get
|
6083
|
+
*/
|
5629
6084
|
static getDiseaseCareConfig(data: RightServiceConfigQuery): Promise<CommonRes<DiseaseCareConfigDTO>>;
|
6085
|
+
/**
|
6086
|
+
* 课题研究.查询单个(按ID)
|
6087
|
+
* URL: /api/blade-system/${ShcpApiSdk.getApiSuffix()}/right/serviceConfig/healthStudy/detail
|
6088
|
+
*/
|
5630
6089
|
static getHealthStudyDetail(id: number): Promise<CommonRes<HealthStudyConfigDTO>>;
|
6090
|
+
/**
|
6091
|
+
* 课题研究.查询单个(按条件)
|
6092
|
+
* URL: /api/blade-system/${ShcpApiSdk.getApiSuffix()}/right/serviceConfig/healthStudy/get
|
6093
|
+
*/
|
5631
6094
|
static getHealthStudyConfig(data: RightServiceConfigQuery): Promise<CommonRes<HealthStudyConfigDTO>>;
|
6095
|
+
/**
|
6096
|
+
* 健康自测.查询单个(按条件)
|
6097
|
+
* URL: /api/blade-system/${ShcpApiSdk.getApiSuffix()}/right/serviceConfig/healthSelfAssessment/get
|
6098
|
+
*/
|
5632
6099
|
static getHealthSelfAssessmentConfig(data: RightServiceConfigQuery): Promise<CommonRes<HealthSelfAssessmentConfigDTO>>;
|
6100
|
+
/**
|
6101
|
+
* 健康档案.查询单个(按条件)
|
6102
|
+
* URL: /api/blade-system/${ShcpApiSdk.getApiSuffix()}/right/serviceConfig/healthProfile/get
|
6103
|
+
*/
|
5633
6104
|
static getHealthProfileConfig(data: RightServiceConfigQuery): Promise<CommonRes<HealthProfileConfigDTO>>;
|
6105
|
+
/**
|
6106
|
+
* 健康工具.查询单个(按条件)
|
6107
|
+
* URL: /api/blade-system/${ShcpApiSdk.getApiSuffix()}/right/serviceConfig/healthTool/get
|
6108
|
+
*/
|
5634
6109
|
static getHealthToolConfig(data: RightServiceConfigQuery): Promise<CommonRes<HealthToolConfigDTO>>;
|
6110
|
+
/**
|
6111
|
+
* 健康咨询.查询单个(按条件)
|
6112
|
+
* URL: /api/blade-system/${ShcpApiSdk.getApiSuffix()}/right/serviceConfig/healthConsult/get
|
6113
|
+
*/
|
5635
6114
|
static getHealthConsultConfig(data: RightServiceConfigQuery): Promise<CommonRes<HealthConsultConfigDTO>>;
|
5636
6115
|
}
|
5637
6116
|
|
5638
6117
|
declare class SystemRightApi {
|
6118
|
+
/**
|
6119
|
+
* 权益详情
|
6120
|
+
* URL: /api/blade-system/${ShcpApiSdk.getApiSuffix()}/right/detail
|
6121
|
+
*/
|
5639
6122
|
static getDetail(params: {
|
5640
6123
|
id: number;
|
5641
6124
|
}): Promise<CommonRes<RightDTO>>;
|
6125
|
+
/**
|
6126
|
+
* 权益列表
|
6127
|
+
* URL: /api/blade-system/${ShcpApiSdk.getApiSuffix()}/right/get
|
6128
|
+
*/
|
5642
6129
|
static get(data: RightQuery): Promise<CommonRes<RightDTO>>;
|
6130
|
+
/**
|
6131
|
+
* 权益列表
|
6132
|
+
* URL: /api/shcp-system/${ShcpApiSdk.getApiSuffix()}/right/listByIds
|
6133
|
+
*/
|
5643
6134
|
static getListByIds(data: number[]): Promise<CommonRes<RightDTO[]>>;
|
6135
|
+
/**
|
6136
|
+
* 权益列表
|
6137
|
+
* URL: /api/blade-system/${ShcpApiSdk.getApiSuffix()}/right/list
|
6138
|
+
*/
|
5644
6139
|
static getList(data: RightQuery): Promise<CommonRes<RightDTO[]>>;
|
6140
|
+
/**
|
6141
|
+
* 权益列表
|
6142
|
+
* URL: /api/blade-system/${ShcpApiSdk.getApiSuffix()}/right/page
|
6143
|
+
*/
|
5645
6144
|
static getPage(data: RightQuery): Promise<CommonRes<PagedList<RightDTO>>>;
|
6145
|
+
/**
|
6146
|
+
* 初始化权益
|
6147
|
+
* URL: /api/shcp-system/${ShcpApiSdk.getApiSuffix()}/right/initRight
|
6148
|
+
*/
|
5646
6149
|
static init(params: {
|
5647
6150
|
tenantId: string;
|
5648
6151
|
}): Promise<CommonRes<any>>;
|
6152
|
+
/**
|
6153
|
+
* 复制
|
6154
|
+
* URL: /api/shcp-system/${ShcpApiSdk.getApiSuffix()}/right/copy
|
6155
|
+
*/
|
5649
6156
|
static copy(data: RightCopyRequest): Promise<CommonRes<RightCopyResponse>>;
|
6157
|
+
/**
|
6158
|
+
* 更新复制配置
|
6159
|
+
* URL: /api/shcp-system/${ShcpApiSdk.getApiSuffix()}/right/updateCopyConfig
|
6160
|
+
*/
|
5650
6161
|
static updateCopyConfig(data: RightServiceConfigCopyUpdateRequest): Promise<CommonRes<any>>;
|
5651
6162
|
}
|
5652
6163
|
|
5653
6164
|
declare class UserGroupApi {
|
6165
|
+
/**
|
6166
|
+
* 更新用户组
|
6167
|
+
* URL: /api/blade-system/${ShcpApiSdk.getApiSuffix()}/userGroup/update
|
6168
|
+
*/
|
5654
6169
|
static update(data: UserGroupUpdateRequest): any;
|
6170
|
+
/**
|
6171
|
+
* 解绑用户
|
6172
|
+
* URL: /api/blade-system/${ShcpApiSdk.getApiSuffix()}/userGroup/unbindUser
|
6173
|
+
*/
|
5655
6174
|
static unbindUser(data: UnbindUserRequest): any;
|
6175
|
+
/**
|
6176
|
+
* 创建用户组
|
6177
|
+
* URL: /api/blade-system/${ShcpApiSdk.getApiSuffix()}/userGroup/create
|
6178
|
+
*/
|
5656
6179
|
static create(data: CreateRequest): any;
|
6180
|
+
/**
|
6181
|
+
* 绑定用户
|
6182
|
+
* URL: /api/blade-system/${ShcpApiSdk.getApiSuffix()}/userGroup/bindUser
|
6183
|
+
*/
|
5657
6184
|
static bindUser(data: BindUserRequest): any;
|
6185
|
+
/**
|
6186
|
+
* 获取用户组树
|
6187
|
+
* URL: /api/blade-system/${ShcpApiSdk.getApiSuffix()}/userGroup/tree
|
6188
|
+
*/
|
5658
6189
|
static getTree(data: QueryTreeRequest): any;
|
6190
|
+
/**
|
6191
|
+
* 获取用户组详情
|
6192
|
+
* URL: /api/blade-system/${ShcpApiSdk.getApiSuffix()}/userGroup/detail
|
6193
|
+
*/
|
5659
6194
|
static getDetail(id: number): any;
|
6195
|
+
/**
|
6196
|
+
* 查询医生管理组用户
|
6197
|
+
* URL: /api/blade-system/${ShcpApiSdk.getApiSuffix()}/userGroup/bladeUserPage
|
6198
|
+
*/
|
5660
6199
|
static getBladeUserPage(data: UserGroupMemberRequest): any;
|
6200
|
+
/**
|
6201
|
+
* 删除用户组
|
6202
|
+
* URL: /api/blade-system/${ShcpApiSdk.getApiSuffix()}/userGroup/delete
|
6203
|
+
*/
|
5661
6204
|
static delete(data: UserGroupDeleteRequest): any;
|
5662
6205
|
}
|
5663
6206
|
|