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