shcp-api-lib 1.0.1 → 1.0.3
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 +592 -2
- package/dist/index.esm.js +799 -320
- package/dist/index.esm.js.map +1 -1
- package/dist/index.js +805 -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/dist/types/src/index.d.ts +1 -0
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
@@ -4544,6 +4544,43 @@ interface ComponentItem {
|
|
4544
4544
|
lengthNum: number;
|
4545
4545
|
}
|
4546
4546
|
|
4547
|
+
declare const ArticleLibType: {
|
4548
|
+
Public: string;
|
4549
|
+
Private: string;
|
4550
|
+
Draft: string;
|
4551
|
+
Other: string;
|
4552
|
+
};
|
4553
|
+
declare const FormLibType: {
|
4554
|
+
Public: string;
|
4555
|
+
Private: string;
|
4556
|
+
Draft: string;
|
4557
|
+
Other: string;
|
4558
|
+
};
|
4559
|
+
declare const LabelLibType: {
|
4560
|
+
Public: string;
|
4561
|
+
Private: string;
|
4562
|
+
};
|
4563
|
+
/************************************************ */
|
4564
|
+
type KMLibraryType = FormLibraryType;
|
4565
|
+
type LibraryTypeOption = {
|
4566
|
+
label: string;
|
4567
|
+
value: KMLibraryType;
|
4568
|
+
};
|
4569
|
+
declare enum FormType {
|
4570
|
+
Form = 1,
|
4571
|
+
Tree = 2
|
4572
|
+
}
|
4573
|
+
declare enum QuestionItemType {
|
4574
|
+
FirstTitle = 1,
|
4575
|
+
SecondTitle = 2,
|
4576
|
+
ThirdTitle = 3,
|
4577
|
+
FormItem = 4
|
4578
|
+
}
|
4579
|
+
type FormObjectType = {
|
4580
|
+
label: string;
|
4581
|
+
value: FormType;
|
4582
|
+
};
|
4583
|
+
declare const FormTypeOptions: FormObjectType[];
|
4547
4584
|
declare enum FormRuleType {
|
4548
4585
|
/** 表单内置评估规则 */
|
4549
4586
|
BuiltInRules = 1,
|
@@ -4554,6 +4591,16 @@ declare enum FormRuleType {
|
|
4554
4591
|
/** 未知 */
|
4555
4592
|
Unknown = 99
|
4556
4593
|
}
|
4594
|
+
declare enum FormLibraryType {
|
4595
|
+
Public = 1,
|
4596
|
+
Private = 2,
|
4597
|
+
Draft = 3,
|
4598
|
+
Other = 4,
|
4599
|
+
Custom = 1000
|
4600
|
+
}
|
4601
|
+
declare const FormLibraryTypeOptions: LibraryTypeOption[];
|
4602
|
+
declare function processFormQueryParams(params: KMForm.FormQuery, type: FormLibraryType, userInfo: UserInfo): void;
|
4603
|
+
declare function isFormEqual(left: any, right: any): boolean;
|
4557
4604
|
|
4558
4605
|
interface FormRuleRelationDTO {
|
4559
4606
|
/** id */
|
@@ -5208,14 +5255,26 @@ declare class AppClientApi {
|
|
5208
5255
|
}
|
5209
5256
|
|
5210
5257
|
declare class AppClientPageConfigApi {
|
5258
|
+
/**
|
5259
|
+
* 查询列表
|
5260
|
+
* URL: /api/blade-system/${ShcpApiSdk.getApiSuffix()}/appClient/pageConfig/list
|
5261
|
+
*/
|
5211
5262
|
static getList(data: AppClientPageConfigQuery): Promise<CommonRes<AppClientPageConfigDTO[]>>;
|
5212
5263
|
}
|
5213
5264
|
|
5214
5265
|
declare class AppClientSettingApi {
|
5266
|
+
/**
|
5267
|
+
* 查询单个
|
5268
|
+
* URL: /api/blade-system/${ShcpApiSdk.getApiSuffix()}/appClient/setting/get
|
5269
|
+
*/
|
5215
5270
|
static get(data: AppClientSettingQuery): Promise<CommonRes<AppClientSettingDTO>>;
|
5216
5271
|
}
|
5217
5272
|
|
5218
5273
|
declare class CommonDictApi {
|
5274
|
+
/**
|
5275
|
+
* 查询单个详情
|
5276
|
+
* URL: /api/blade-system/dict/detail
|
5277
|
+
*/
|
5219
5278
|
static getDetail(data: DictBiz): Promise<CommonRes<DictBizVO>>;
|
5220
5279
|
/**
|
5221
5280
|
* 列表
|
@@ -5260,11 +5319,35 @@ declare class FileApi {
|
|
5260
5319
|
}
|
5261
5320
|
|
5262
5321
|
declare class CommonRightApi {
|
5322
|
+
/**
|
5323
|
+
* 获取权益列表
|
5324
|
+
* URL: /api/shcp-healthcare/${ShcpApiSdk.getApiSuffix()}/right/list
|
5325
|
+
*/
|
5263
5326
|
static getRightList(data: RightRequest): Promise<CommonRes<RightDTO[]>>;
|
5327
|
+
/**
|
5328
|
+
* 服务流程分页查询
|
5329
|
+
* URL: /api/shcp-healthcare/${ShcpApiSdk.getApiSuffix()}/serviceFlow/page
|
5330
|
+
*/
|
5264
5331
|
static flowPage(data: ServiceFlowQuery): Promise<CommonRes<PagedList<ServiceFlowDTO>>>;
|
5332
|
+
/**
|
5333
|
+
* 服务任务分页查询
|
5334
|
+
* URL: /api/shcp-healthcare/${ShcpApiSdk.getApiSuffix()}/serviceTask/page
|
5335
|
+
*/
|
5265
5336
|
static taskPage(data: ServiceTaskQuery): Promise<CommonRes<PagedList<ServiceFlowDTO>>>;
|
5337
|
+
/**
|
5338
|
+
* 服务流程.列表查询
|
5339
|
+
* URL: /api/shcp-healthcare/${ShcpApiSdk.getApiSuffix()}/serviceFlow/list
|
5340
|
+
*/
|
5266
5341
|
static listServiceFlow(query: ServiceFlowQuery): Promise<CommonRes<ServiceFlowDTO[]>>;
|
5342
|
+
/**
|
5343
|
+
* 服务流程配置详情
|
5344
|
+
* URL: /api/shcp-healthcare/${ShcpApiSdk.getApiSuffix()}/serviceFlow/config/detail
|
5345
|
+
*/
|
5267
5346
|
static detailServiceFlowConfig(flowId: number | string): Promise<CommonRes<ServiceFlowConfigDTO>>;
|
5347
|
+
/**
|
5348
|
+
* 服务任务用户分页查询
|
5349
|
+
* URL: /api/shcp-healthcare/${ShcpApiSdk.getApiSuffix()}/serviceTask/user/page
|
5350
|
+
*/
|
5268
5351
|
static pageServiceTaskUser(data: ServiceTaskQuery): Promise<CommonRes<ServiceTaskUserCountDTO>>;
|
5269
5352
|
/**
|
5270
5353
|
* 任务维度
|
@@ -5281,6 +5364,10 @@ declare class CommonRightApi {
|
|
5281
5364
|
* URL: /api/shcp-healthcare/${ShcpApiSdk.getApiSuffix()}/metricException/update
|
5282
5365
|
*/
|
5283
5366
|
static updateMetricException(data: MetricExceptionUpdateRequests): Promise<CommonRes<MetricExceptionDTO>>;
|
5367
|
+
/**
|
5368
|
+
* 通用任务启动
|
5369
|
+
* URL: /api/shcp-healthcare/${ShcpApiSdk.getApiSuffix()}/${serviceTypeEnName}/start
|
5370
|
+
*/
|
5284
5371
|
static commonTaskStart(serviceTypeEnName: string, data: {
|
5285
5372
|
consumerId: string | number;
|
5286
5373
|
rightId: string | number;
|
@@ -5319,30 +5406,122 @@ declare class CommonRightApi {
|
|
5319
5406
|
}
|
5320
5407
|
|
5321
5408
|
declare class ConsumerApi {
|
5409
|
+
/**
|
5410
|
+
* 获取医生列表
|
5411
|
+
* URL: /api/shcp-consumer/${ShcpApiSdk.getApiSuffix()}/consumerRight/listDoctor
|
5412
|
+
*/
|
5322
5413
|
static getDoctorList(data: ConsumerRightDoctorQuery): Promise<CommonRes<ConsumerRightDoctorDTO[]>>;
|
5414
|
+
/**
|
5415
|
+
* 获取成员分页
|
5416
|
+
* URL: /api/shcp-consumer/${ShcpApiSdk.getApiSuffix()}/consumer/group/member/page
|
5417
|
+
*/
|
5323
5418
|
static getMemberPage(data: ConsumerGroupMemberQuery): Promise<CommonRes<PagedList<ConsumerGroupMemberDTO>>>;
|
5419
|
+
/**
|
5420
|
+
* 批量新增
|
5421
|
+
* URL: /api/shcp-consumer/${ShcpApiSdk.getApiSuffix()}/consumer/group/member/create
|
5422
|
+
*/
|
5324
5423
|
static batchCreateMember(data: ConsumerGroupMemberCreateRequest[]): Promise<CommonRes<ConsumerGroupMemberDTO[]>>;
|
5424
|
+
/**
|
5425
|
+
* 列表查询成员
|
5426
|
+
* URL: /api/shcp-consumer/${ShcpApiSdk.getApiSuffix()}/consumer/group/member/list
|
5427
|
+
*/
|
5325
5428
|
static listMember(data: ConsumerGroupMemberQuery): Promise<CommonRes<ConsumerGroupMemberDTO[]>>;
|
5429
|
+
/**
|
5430
|
+
* 更新成员
|
5431
|
+
* URL: /api/shcp-consumer/${ShcpApiSdk.getApiSuffix()}/consumer/group/member/update
|
5432
|
+
*/
|
5326
5433
|
static updateMember(data: ConsumerGroupMemberUpdateRequest): Promise<CommonRes<ConsumerGroupMemberDTO>>;
|
5434
|
+
/**
|
5435
|
+
* 获取组详情
|
5436
|
+
* URL: /api/shcp-consumer/${ShcpApiSdk.getApiSuffix()}/consumer/group/detail
|
5437
|
+
*/
|
5327
5438
|
static getGroupDetail(id: number): Promise<CommonRes<ConsumerGroupDTO>>;
|
5439
|
+
/**
|
5440
|
+
* 获取组分页
|
5441
|
+
* URL: /api/shcp-consumer/${ShcpApiSdk.getApiSuffix()}/consumer/group/page
|
5442
|
+
*/
|
5328
5443
|
static getGroupPage(data: ConsumerGroupQuery): Promise<CommonRes<PagedList<ConsumerGroupDTO>>>;
|
5444
|
+
/**
|
5445
|
+
* 根据ID列表查询
|
5446
|
+
* URL: /api/shcp-consumer/${ShcpApiSdk.getApiSuffix()}/consumer/group/listByIds
|
5447
|
+
*/
|
5329
5448
|
static getListByIds(data: ConsumerGroupQuery): Promise<CommonRes<ConsumerGroupDTO>>;
|
5449
|
+
/**
|
5450
|
+
* 获取树形结构
|
5451
|
+
* URL: /api/shcp-consumer/${ShcpApiSdk.getApiSuffix()}/consumer/group/tree
|
5452
|
+
*/
|
5330
5453
|
static getTree(data: {
|
5331
5454
|
rootId: number | string;
|
5332
5455
|
}): Promise<CommonRes<ConsumerGroupDTO>>;
|
5456
|
+
/**
|
5457
|
+
* 更新组
|
5458
|
+
* URL: /api/shcp-consumer/${ShcpApiSdk.getApiSuffix()}/consumer/group/update
|
5459
|
+
*/
|
5333
5460
|
static updateGroup(data: ConsumerGroupUpdateRequest): Promise<CommonRes<ConsumerGroupDTO>>;
|
5461
|
+
/**
|
5462
|
+
* 创建组
|
5463
|
+
* URL: /api/shcp-consumer/${ShcpApiSdk.getApiSuffix()}/consumer/group/create
|
5464
|
+
*/
|
5334
5465
|
static createGroup(data: ConsumerGroupUpdateRequest): Promise<CommonRes<ConsumerGroupDTO>>;
|
5466
|
+
/**
|
5467
|
+
* 删除组
|
5468
|
+
* URL: /api/shcp-consumer/${ShcpApiSdk.getApiSuffix()}/consumer/group/delete
|
5469
|
+
*/
|
5335
5470
|
static deleteGroup(data: ConsumerGroupDeleteRequest): Promise<CommonRes<boolean>>;
|
5471
|
+
/**
|
5472
|
+
* 更新消费者
|
5473
|
+
* URL: /api/shcp-consumer/${ShcpApiSdk.getApiSuffix()}/consumer/update
|
5474
|
+
*/
|
5336
5475
|
static update(data: ConsumerUpdateRequest): Promise<CommonRes<ConsumerDTO>>;
|
5476
|
+
/**
|
5477
|
+
* 创建消费者
|
5478
|
+
* URL: /api/shcp-consumer/${ShcpApiSdk.getApiSuffix()}/consumer/create
|
5479
|
+
*/
|
5337
5480
|
static create(data: ConsumerCreateRequest): Promise<CommonRes<ConsumerDTO>>;
|
5481
|
+
/**
|
5482
|
+
* 查询消费者列表
|
5483
|
+
* URL: /api/shcp-consumer/${ShcpApiSdk.getApiSuffix()}/consumer/list
|
5484
|
+
*/
|
5338
5485
|
static list(data: ConsumerQuery): Promise<CommonRes<ConsumerDTO[]>>;
|
5486
|
+
/**
|
5487
|
+
* 查询单个消费者
|
5488
|
+
* URL: /api/shcp-consumer/${ShcpApiSdk.getApiSuffix()}/consumer/get
|
5489
|
+
*/
|
5339
5490
|
static get(data: ConsumerQuery): Promise<CommonRes<ConsumerDTO>>;
|
5491
|
+
/**
|
5492
|
+
* 查询消费用户权益
|
5493
|
+
* URL: /api/shcp-consumer/${ShcpApiSdk.getApiSuffix()}/consumerRight/detail
|
5494
|
+
*/
|
5340
5495
|
static getRightDetail(id: number): Promise<CommonRes<ConsumerRightDTO>>;
|
5496
|
+
/**
|
5497
|
+
* 查询消费用户权益
|
5498
|
+
* URL: /api/shcp-consumer/${ShcpApiSdk.getApiSuffix()}/consumerRight/get
|
5499
|
+
*/
|
5341
5500
|
static getRight(data: ConsumerRightQuery): Promise<CommonRes<ConsumerRightDTO>>;
|
5501
|
+
/**
|
5502
|
+
* 查询消费用户权益
|
5503
|
+
* URL: /api/shcp-consumer/${ShcpApiSdk.getApiSuffix()}/consumerRight/list
|
5504
|
+
*/
|
5342
5505
|
static getRightList(data: ConsumerRightQuery): Promise<CommonRes<ConsumerRightDTO[]>>;
|
5506
|
+
/**
|
5507
|
+
* 查询消费用户权益
|
5508
|
+
* URL: /api/shcp-consumer/${ShcpApiSdk.getApiSuffix()}/consumerRight/page
|
5509
|
+
*/
|
5343
5510
|
static getRightPage(data: ConsumerRightQuery): Promise<CommonRes<PagedList<ConsumerRightDTO>>>;
|
5511
|
+
/**
|
5512
|
+
* 创建消费用户权益
|
5513
|
+
* URL: /api/shcp-consumer/${ShcpApiSdk.getApiSuffix()}/consumerRight/create
|
5514
|
+
*/
|
5344
5515
|
static createRight(data: ConsumerRightCreateRequest): Promise<CommonRes<ConsumerRightDTO>>;
|
5516
|
+
/**
|
5517
|
+
* 批量创建消费用户权益
|
5518
|
+
* URL: /api/shcp-consumer/${ShcpApiSdk.getApiSuffix()}/consumerRight/batchCreate
|
5519
|
+
*/
|
5345
5520
|
static batchCreateRight(data: ConsumerRightCreateRequest[]): Promise<CommonRes<ConsumerRightDTO[]>>;
|
5521
|
+
/**
|
5522
|
+
* 删除消费用户权益
|
5523
|
+
* URL: /api/shcp-consumer/${ShcpApiSdk.getApiSuffix()}/consumerRight/delete
|
5524
|
+
*/
|
5346
5525
|
static deleteRight(data: ConsumerRightDeleteRequest): Promise<CommonRes<boolean>>;
|
5347
5526
|
}
|
5348
5527
|
declare const crudConsumerGroupApi: {
|
@@ -5357,16 +5536,48 @@ declare const crudConsumerApi: {
|
|
5357
5536
|
};
|
5358
5537
|
|
5359
5538
|
declare class ConsumerBindApi {
|
5539
|
+
/**
|
5540
|
+
* 更改
|
5541
|
+
* URL: /api/shcp-consumer/consumerBind/update
|
5542
|
+
*/
|
5360
5543
|
static update(data: ConsumerBindUpdateRequest): Promise<CommonRes<ConsumerBindDTO>>;
|
5544
|
+
/**
|
5545
|
+
* 新增
|
5546
|
+
* URL: /api/shcp-consumer/consumerBind/bind
|
5547
|
+
*/
|
5361
5548
|
static create(data: ConsumerBindCreateRequest): Promise<CommonRes<ConsumerBindDTO>>;
|
5549
|
+
/**
|
5550
|
+
* 删除
|
5551
|
+
* URL: /api/shcp-consumer/consumerBind/delete
|
5552
|
+
*/
|
5362
5553
|
static delete(data: ConsumerBindDeleteRequest): Promise<CommonRes<any>>;
|
5554
|
+
/**
|
5555
|
+
* 设备用户绑定的消费用户列表
|
5556
|
+
* URL: /api/shcp-consumer/consumerBind/list
|
5557
|
+
*/
|
5363
5558
|
static getList(params: ConsumerBindQuery): Promise<CommonRes<ConsumerBindDTO[]>>;
|
5559
|
+
/**
|
5560
|
+
* 发送绑定用户验证码
|
5561
|
+
* URL: /api/shcp-consumer/consumerBind/sendSMSCode
|
5562
|
+
*/
|
5364
5563
|
static sendSMSCode(params: ConsumerBindSendSmsCodeRequest): Promise<CommonRes<any>>;
|
5564
|
+
/**
|
5565
|
+
* 验证码校验
|
5566
|
+
* URL: /api/shcp-consumer/consumerBind/verifySMSCode
|
5567
|
+
*/
|
5365
5568
|
static verifySMSCode(params: {
|
5366
5569
|
code: string;
|
5367
5570
|
phone: string;
|
5368
5571
|
}): Promise<CommonRes<any>>;
|
5572
|
+
/**
|
5573
|
+
* 激活
|
5574
|
+
* URL: /api/shcp-consumer/consumerBind/active
|
5575
|
+
*/
|
5369
5576
|
static active(data: ConsumerBindActiveRequest): Promise<CommonRes<ConsumerBindDTO>>;
|
5577
|
+
/**
|
5578
|
+
* 单个查询
|
5579
|
+
* URL: /api/shcp-consumer/consumerBind/get
|
5580
|
+
*/
|
5370
5581
|
static get(params: ConsumerBindQuery): Promise<CommonRes<ConsumerBindDTO>>;
|
5371
5582
|
}
|
5372
5583
|
|
@@ -5394,9 +5605,25 @@ declare class ConsumerDeviceApi {
|
|
5394
5605
|
}
|
5395
5606
|
|
5396
5607
|
declare class ConsumerFavoriteApi {
|
5608
|
+
/**
|
5609
|
+
* 消费用户收藏列表
|
5610
|
+
* URL: /api/shcp-consumer/${ShcpApiSdk.getApiSuffix()}/consumer/favorite/page
|
5611
|
+
*/
|
5397
5612
|
static getPage(data: ConsumerFavoriteQuery): Promise<CommonRes<PagedList<ConsumerFavoriteDTO>>>;
|
5613
|
+
/**
|
5614
|
+
* 创建消费用户收藏
|
5615
|
+
* URL: /api/shcp-consumer/${ShcpApiSdk.getApiSuffix()}/consumer/favorite/create
|
5616
|
+
*/
|
5398
5617
|
static create(data: ConsumerFavoriteCreateRequest): Promise<CommonRes<any>>;
|
5618
|
+
/**
|
5619
|
+
* 检查是否收藏
|
5620
|
+
* URL: /api/shcp-consumer/${ShcpApiSdk.getApiSuffix()}/consumer/favorite/checkFavorite
|
5621
|
+
*/
|
5399
5622
|
static checkFavorite(params: ConsumerFavoriteQuery): Promise<CommonRes<any>>;
|
5623
|
+
/**
|
5624
|
+
* 取消收藏
|
5625
|
+
* URL: /api/shcp-consumer/${ShcpApiSdk.getApiSuffix()}/consumer/favorite/delete
|
5626
|
+
*/
|
5400
5627
|
static delete(data: ConsumerFavoriteDeleteRequest): Promise<CommonRes<any>>;
|
5401
5628
|
}
|
5402
5629
|
|
@@ -5468,36 +5695,124 @@ declare const diseaseOpApi: HealthCareOpApi;
|
|
5468
5695
|
declare const diseaseExceptionOpApi: HealthCareOpApi;
|
5469
5696
|
|
5470
5697
|
declare class HealthCommonApi {
|
5698
|
+
/**
|
5699
|
+
* 服务流程.分页查询
|
5700
|
+
* URL: /api/shcp-healthcare/${ShcpApiSdk.getApiSuffix()}/serviceFlow/page
|
5701
|
+
*/
|
5471
5702
|
static pageServiceFlow(data: ServiceFlowQuery): Promise<CommonRes<PagedList<ServiceFlowDTO>>>;
|
5703
|
+
/**
|
5704
|
+
* 服务流程.统计, 用户所参与流程统计
|
5705
|
+
* URL: /api/shcp-healthcare/${ShcpApiSdk.getApiSuffix()}/serviceFlow/statistics
|
5706
|
+
*/
|
5472
5707
|
static statsServiceFlow(data: ServiceFlowStatisticsQuery): Promise<CommonRes<ServiceFlowStatisticsDTO[]>>;
|
5708
|
+
/**
|
5709
|
+
* 服务任务的权益.列表查询, 列表查询
|
5710
|
+
* URL: /api/shcp-healthcare/${ShcpApiSdk.getApiSuffix()}/serviceTask/right/list
|
5711
|
+
*/
|
5473
5712
|
static listServiceTaskRight(data: ServiceTaskRightQuery): Promise<CommonRes<RightDTO[]>>;
|
5713
|
+
/**
|
5714
|
+
* 服务任务.分页查询
|
5715
|
+
* URL: /api/shcp-healthcare/${ShcpApiSdk.getApiSuffix()}/serviceTask/page
|
5716
|
+
*/
|
5474
5717
|
static pageServiceTask(data: ServiceTaskQuery): Promise<CommonRes<PagedList<ServiceTaskDTO>>>;
|
5718
|
+
/**
|
5719
|
+
* 服务任务.单个查询(按ID)
|
5720
|
+
* URL: /api/shcp-healthcare/${ShcpApiSdk.getApiSuffix()}/serviceTask/detail
|
5721
|
+
*/
|
5475
5722
|
static detailServiceTask(id: number): Promise<CommonRes<ServiceTaskDTO>>;
|
5723
|
+
/**
|
5724
|
+
* 服务任务.单个查询(按条件)
|
5725
|
+
* URL: /api/shcp-healthcare/${ShcpApiSdk.getApiSuffix()}/serviceTask/get
|
5726
|
+
*/
|
5476
5727
|
static getServiceTask(data: ServiceTaskQuery): Promise<CommonRes<ServiceTaskDTO>>;
|
5728
|
+
/**
|
5729
|
+
* 服务任务.统计, 用户所参与任务统计
|
5730
|
+
* URL: /api/shcp-healthcare/${ShcpApiSdk.getApiSuffix()}/serviceTask/statistics
|
5731
|
+
*/
|
5477
5732
|
static statsServiceTask(data: ServiceTaskStatisticsQuery): Promise<CommonRes<ServiceTaskStatisticsDTO[]>>;
|
5733
|
+
/**
|
5734
|
+
* 健康指标趋势.列表查询
|
5735
|
+
* URL: /api/shcp-healthcare/${ShcpApiSdk.getApiSuffix()}/healthMetricTrend/list
|
5736
|
+
*/
|
5478
5737
|
static listMetricTrend(data: HealthMetricTrendQuery): Promise<CommonRes<HealthMetricTrendDTO[]>>;
|
5738
|
+
/**
|
5739
|
+
* 指标异常记录.分页查询, 任务维度
|
5740
|
+
* URL: /api/shcp-healthcare/${ShcpApiSdk.getApiSuffix()}/metricException/page
|
5741
|
+
*/
|
5479
5742
|
static metricExceptionPage(data: MetricExceptionQuery): Promise<CommonRes<PagedList<MetricExceptionDTO>>>;
|
5743
|
+
/**
|
5744
|
+
* 指标异常记录.用户分页查询, 用户维度
|
5745
|
+
* URL: /api/shcp-healthcare/${ShcpApiSdk.getApiSuffix()}/metricException/user/page
|
5746
|
+
*/
|
5480
5747
|
static metricExceptionUserPage(data: MetricExceptionQuery): Promise<CommonRes<MetricExceptionUserCountDTO>>;
|
5481
5748
|
}
|
5482
5749
|
|
5483
5750
|
declare class HealthMetricApi {
|
5751
|
+
/**
|
5752
|
+
* 获取健康指标
|
5753
|
+
* URL: /api/shcp-healthcare/${ShcpApiSdk.getApiSuffix()}/healthMetric/get
|
5754
|
+
*/
|
5484
5755
|
static getMetric(data: HealthMetricQuery): Promise<CommonRes<HealthMetricDTO>>;
|
5756
|
+
/**
|
5757
|
+
* 获取健康指标列表
|
5758
|
+
* URL: /api/shcp-healthcare/${ShcpApiSdk.getApiSuffix()}/healthMetric/list
|
5759
|
+
*/
|
5485
5760
|
static listMetric(data: HealthMetricQuery): Promise<CommonRes<HealthMetricDTO[]>>;
|
5761
|
+
/**
|
5762
|
+
* 健康指标分页查询
|
5763
|
+
* URL: /api/shcp-healthcare/${ShcpApiSdk.getApiSuffix()}/healthMetric/page
|
5764
|
+
*/
|
5486
5765
|
static pageMetric(data: HealthMetricQuery): Promise<CommonRes<PagedList<HealthMetricDTO>>>;
|
5766
|
+
/**
|
5767
|
+
* 健康指标趋势列表
|
5768
|
+
* URL: /api/shcp-healthcare/${ShcpApiSdk.getApiSuffix()}/healthMetricTrend/list
|
5769
|
+
*/
|
5487
5770
|
static listTrend(data: HealthMetricTrendQuery): Promise<CommonRes<HealthMetricTrendDTO[]>>;
|
5771
|
+
/**
|
5772
|
+
* 健康指标日志列表
|
5773
|
+
* URL: /api/shcp-healthcare/${ShcpApiSdk.getApiSuffix()}/healthMetricLog/list
|
5774
|
+
*/
|
5488
5775
|
static listLog(data: HealthMetricQuery): Promise<CommonRes<HealthMetricLogDTO[]>>;
|
5489
5776
|
}
|
5490
5777
|
|
5491
5778
|
declare class HealthProfileApi {
|
5779
|
+
/**
|
5780
|
+
* 获取日记任务
|
5781
|
+
* URL: /api/shcp-healthcare/${ShcpApiSdk.getApiSuffix()}/healthProfile/diaryTask/fetch
|
5782
|
+
*/
|
5492
5783
|
static fetchDiaryTask(data: DiaryTaskFetch): Promise<CommonRes<DiaryTaskDTO>>;
|
5784
|
+
/**
|
5785
|
+
* 提交日记任务
|
5786
|
+
* URL: /api/shcp-healthcare/${ShcpApiSdk.getApiSuffix()}/healthProfile/diaryTask/submit
|
5787
|
+
*/
|
5493
5788
|
static submitDiaryTask(data: DiaryTaskSubmit): Promise<CommonRes<boolean>>;
|
5789
|
+
/**
|
5790
|
+
* 提交报告任务
|
5791
|
+
* URL: /api/shcp-healthcare/${ShcpApiSdk.getApiSuffix()}/healthProfile/reportTask/submit
|
5792
|
+
*/
|
5494
5793
|
static submitReportTask(data: ReportTaskSubmit): Promise<CommonRes<ReportTaskDTO>>;
|
5794
|
+
/**
|
5795
|
+
* 获取报告任务
|
5796
|
+
* URL: /api/shcp-healthcare/${ShcpApiSdk.getApiSuffix()}/healthProfile/reportTask/fetch
|
5797
|
+
*/
|
5495
5798
|
static fetchReportTask(data: ReportTaskFetch): Promise<CommonRes<ReportTaskDTO>>;
|
5496
5799
|
}
|
5497
5800
|
|
5498
5801
|
declare class HealthSelfAssessApi {
|
5802
|
+
/**
|
5803
|
+
* 启动健康自评
|
5804
|
+
* URL: /api/shcp-healthcare/${ShcpApiSdk.getApiSuffix()}/healthSelfAssess/start
|
5805
|
+
*/
|
5499
5806
|
static start(data: ServiceStartRequest): Promise<CommonRes<AssessmentTaskDTO>>;
|
5807
|
+
/**
|
5808
|
+
* 提交评估任务
|
5809
|
+
* URL: /api/shcp-healthcare/${ShcpApiSdk.getApiSuffix()}/healthSelfAssess/task/submit
|
5810
|
+
*/
|
5500
5811
|
static submitTask(data: ServiceTaskRequests.Submit): Promise<CommonRes<boolean>>;
|
5812
|
+
/**
|
5813
|
+
* 获取评估任务
|
5814
|
+
* URL: /api/shcp-healthcare/${ShcpApiSdk.getApiSuffix()}/healthSelfAssess/task/fetch
|
5815
|
+
*/
|
5501
5816
|
static fetchTask(data: ServiceTaskRequests.Fetch): Promise<CommonRes<AssessmentTaskDTO>>;
|
5502
5817
|
}
|
5503
5818
|
|
@@ -5537,24 +5852,59 @@ declare class HealthToolApi {
|
|
5537
5852
|
}
|
5538
5853
|
|
5539
5854
|
declare class HelpCenterApi {
|
5855
|
+
/**
|
5856
|
+
* 获取帮助中心配置
|
5857
|
+
* URL: /api/blade-system/${ShcpApiSdk.getApiSuffix()}/helpCenter/get
|
5858
|
+
*/
|
5540
5859
|
static getConfig(clientType: string | number): Promise<CommonRes<any>>;
|
5541
5860
|
}
|
5542
5861
|
|
5543
5862
|
declare class ImUserApi {
|
5863
|
+
/**
|
5864
|
+
* 用户登录
|
5865
|
+
* URL: /api/shcp-message/${ShcpApiSdk.getApiSuffix()}/message/im/login
|
5866
|
+
*/
|
5544
5867
|
static login(data: IMUserRequest): Promise<CommonRes<IMUserDTO>>;
|
5868
|
+
/**
|
5869
|
+
* 获取对话用户信息
|
5870
|
+
* URL: /api/shcp-message/${ShcpApiSdk.getApiSuffix()}/message/im/getUser
|
5871
|
+
*/
|
5545
5872
|
static getUser(data: IMUserRequest): Promise<CommonRes<IMUserDTO>>;
|
5873
|
+
/**
|
5874
|
+
* 获取对话用户信息
|
5875
|
+
* URL: /api/shcp-message/${ShcpApiSdk.getApiSuffix()}/message/im/getUserList
|
5876
|
+
*/
|
5546
5877
|
static getUserList(data: IMUserQuery): Promise<CommonRes<IMUserDTO[]>>;
|
5547
5878
|
}
|
5548
5879
|
|
5549
5880
|
declare class KmArticleApi {
|
5881
|
+
/**
|
5882
|
+
* 查询文章分类树
|
5883
|
+
*/
|
5550
5884
|
static getCategoryTree(data: ArticleCategoryTreeRequest): Promise<CommonRes<ArticleCategoryDTO>>;
|
5885
|
+
/**
|
5886
|
+
* 查询文章分页列表
|
5887
|
+
*/
|
5551
5888
|
static getPage(data: ArticleQuery): Promise<CommonRes<PagedList<ArticleDTO>>>;
|
5889
|
+
/**
|
5890
|
+
* 文章内容查询
|
5891
|
+
*/
|
5552
5892
|
static getContent(id: number | string): Promise<CommonRes<ArticleDTO>>;
|
5893
|
+
/**
|
5894
|
+
* 查询标签分类树
|
5895
|
+
*/
|
5553
5896
|
static getTagCategoryTree(data: ArticleCategoryTreeRequest): Promise<CommonRes<ArticleCategoryDTO>>;
|
5897
|
+
/**
|
5898
|
+
* 查询标签分页列表
|
5899
|
+
*/
|
5554
5900
|
static getTagPage(data: ArticleTagQuery): Promise<CommonRes<PagedList<ArticleTagDTO>>>;
|
5555
5901
|
}
|
5556
5902
|
|
5557
5903
|
declare class KmFormApi {
|
5904
|
+
/**
|
5905
|
+
* 获取表单内容
|
5906
|
+
* URL: /api/shcp-km/${ShcpApiSdk.getApiSuffix()}/form/content/query
|
5907
|
+
*/
|
5558
5908
|
static getContent(formId: number | string): Promise<CommonRes<KMForm.FormResultDTO>>;
|
5559
5909
|
/**
|
5560
5910
|
* 根据用户传参进行智能辅助填充
|
@@ -5564,102 +5914,342 @@ declare class KmFormApi {
|
|
5564
5914
|
}
|
5565
5915
|
|
5566
5916
|
declare class KmFormRuleRelationApi {
|
5917
|
+
/**
|
5918
|
+
* 单个查询
|
5919
|
+
* URL: /api/shcp-km/${ShcpApiSdk.getApiSuffix()}/form/rule/get
|
5920
|
+
*/
|
5567
5921
|
static get(data: FormRuleRelationQuery): Promise<CommonRes<FormRuleRelationDTO>>;
|
5922
|
+
/**
|
5923
|
+
* 列表查询
|
5924
|
+
* URL: /api/shcp-km/${ShcpApiSdk.getApiSuffix()}/form/rule/list
|
5925
|
+
*/
|
5568
5926
|
static getList(data: FormRuleRelationQuery): Promise<CommonRes<FormRuleRelationDTO[]>>;
|
5569
5927
|
}
|
5570
5928
|
|
5571
5929
|
declare class LoginApi {
|
5930
|
+
/**
|
5931
|
+
* 新增
|
5932
|
+
* URL: /api/blade-system/${ShcpApiSdk.getApiSuffix()}/potentialCustomer/create
|
5933
|
+
*/
|
5572
5934
|
static createApplyAccount(data: PotentialCustomerCreateRequest): Promise<CommonRes<PotentialCustomerDTO>>;
|
5935
|
+
/**
|
5936
|
+
* 获取申请结果
|
5937
|
+
* URL: /api/blade-system/${ShcpApiSdk.getApiSuffix()}/salesConfig/get
|
5938
|
+
*/
|
5573
5939
|
static getApplyResult(): Promise<CommonRes<SaleDTO>>;
|
5940
|
+
/**
|
5941
|
+
* 刷新token
|
5942
|
+
* URL: /api/blade-auth/oauth/token
|
5943
|
+
*/
|
5574
5944
|
static refreshToken(data: {
|
5575
5945
|
tenantId: string;
|
5576
5946
|
refresh_token: string;
|
5577
5947
|
}): any;
|
5948
|
+
/**
|
5949
|
+
* 用户登录
|
5950
|
+
* URL: /api/blade-auth/oauth/token
|
5951
|
+
*/
|
5578
5952
|
static toLogin(data: {
|
5579
5953
|
tenantId: string;
|
5580
5954
|
username: string;
|
5581
5955
|
password: string;
|
5582
5956
|
}): any;
|
5957
|
+
/**
|
5958
|
+
* 应用客户端登录
|
5959
|
+
* URL: /api/blade-auth/appClient/login
|
5960
|
+
*/
|
5583
5961
|
static appClientLogin(data: AppClientLoginRequest): Promise<CommonRes<any>>;
|
5962
|
+
/**
|
5963
|
+
* 获取租户列表
|
5964
|
+
* URL: /api/blade-system/tenant/selectTenant
|
5965
|
+
*/
|
5584
5966
|
static getTenantList(): Promise<CommonRes<Tenant>>;
|
5967
|
+
/**
|
5968
|
+
* 获取关联租户列表
|
5969
|
+
* URL: /api/blade-system/${ShcpApiSdk.getApiSuffix()}/appClient/list
|
5970
|
+
*/
|
5585
5971
|
static getRelatedTenantList(relateTenantId: string): any;
|
5586
5972
|
}
|
5587
5973
|
|
5588
5974
|
declare class MarketingApi {
|
5975
|
+
/**
|
5976
|
+
* 保存营销内容
|
5977
|
+
* URL: /api/shcp-marketing/${ShcpApiSdk.getApiSuffix()}/marketing/content/save
|
5978
|
+
*/
|
5589
5979
|
static saveContent(data: MarketingContentCreateRequest): Promise<CommonRes<MarketingContentDTO[]>>;
|
5980
|
+
/**
|
5981
|
+
* 创建营销活动
|
5982
|
+
* URL: /api/shcp-marketing/${ShcpApiSdk.getApiSuffix()}/marketing/create
|
5983
|
+
*/
|
5590
5984
|
static create(data: MarketingCreateRequest): Promise<CommonRes<MarketingDTO>>;
|
5985
|
+
/**
|
5986
|
+
* 更新营销活动
|
5987
|
+
* URL: /api/shcp-marketing/${ShcpApiSdk.getApiSuffix()}/marketing/update
|
5988
|
+
*/
|
5591
5989
|
static update(data: MarketingUpdateRequest): Promise<CommonRes<MarketingDTO>>;
|
5990
|
+
/**
|
5991
|
+
* 获取营销活动分页
|
5992
|
+
* URL: /api/shcp-marketing/${ShcpApiSdk.getApiSuffix()}/marketing/page
|
5993
|
+
*/
|
5592
5994
|
static getPage(data: MarketingQuery): Promise<CommonRes<PagedList<MarketingDTO>>>;
|
5995
|
+
/**
|
5996
|
+
* 删除营销活动
|
5997
|
+
* URL: /api/shcp-marketing/${ShcpApiSdk.getApiSuffix()}/marketing/delete
|
5998
|
+
*/
|
5593
5999
|
static delete(data: MarketingDeleteRequest): Promise<CommonRes<void>>;
|
6000
|
+
/**
|
6001
|
+
* 获取营销活动详情
|
6002
|
+
* URL: /api/shcp-marketing/${ShcpApiSdk.getApiSuffix()}/marketing/detail
|
6003
|
+
*/
|
5594
6004
|
static getDetail(id: number): Promise<CommonRes<MarketingDTO>>;
|
6005
|
+
/**
|
6006
|
+
* 获取营销任务分页
|
6007
|
+
* URL: /api/shcp-marketing/${ShcpApiSdk.getApiSuffix()}/marketing/task/page
|
6008
|
+
*/
|
5595
6009
|
static getTaskPage(data: MarketingTaskQuery): Promise<CommonRes<PagedList<MarketingTaskDTO>>>;
|
6010
|
+
/**
|
6011
|
+
* 获取营销任务日志分页
|
6012
|
+
* URL: /api/shcp-marketing/${ShcpApiSdk.getApiSuffix()}/marketing/task/log/page
|
6013
|
+
*/
|
5596
6014
|
static getTaskLogPage(data: MarketingTaskLogQuery): Promise<CommonRes<PagedList<MarketingTaskLogDTO>>>;
|
6015
|
+
/**
|
6016
|
+
* 创建营销任务日志
|
6017
|
+
* URL: /api/shcp-marketing/${ShcpApiSdk.getApiSuffix()}/marketing/task/log/create
|
6018
|
+
*/
|
5597
6019
|
static createTaskLogs(data: MarketingTaskLogCreateRequest[]): Promise<CommonRes<MarketingTaskLogDTO[]>>;
|
6020
|
+
/**
|
6021
|
+
* 获取消息模板列表
|
6022
|
+
* URL: /api/shcp-marketing/${ShcpApiSdk.getApiSuffix()}/message/template/list
|
6023
|
+
*/
|
5598
6024
|
static getMessageTemplateList(data: MessageTemplateQuery): Promise<CommonRes<MessageTemplateDTO[]>>;
|
6025
|
+
/**
|
6026
|
+
* 获取消息模板详情
|
6027
|
+
* URL: /api/shcp-marketing/${ShcpApiSdk.getApiSuffix()}/message/template/detail
|
6028
|
+
*/
|
5599
6029
|
static getMessageTemplateDetail(id: number): Promise<CommonRes<MessageTemplateDTO>>;
|
6030
|
+
/**
|
6031
|
+
* 获取模版列表数据
|
6032
|
+
* URL: /api/shcp-marketing/${ShcpApiSdk.getApiSuffix()}/marketing/content/list
|
6033
|
+
*/
|
5600
6034
|
static getSendContent(data: marketingSendContentRequest): Promise<CommonRes<boolean>>;
|
5601
6035
|
}
|
5602
6036
|
|
5603
6037
|
declare class MessageRecordApi {
|
6038
|
+
/**
|
6039
|
+
* 获取消息记录详情
|
6040
|
+
* URL: /api/shcp-message/${ShcpApiSdk.getApiSuffix()}/message/record/detail
|
6041
|
+
*/
|
5604
6042
|
static getDetail(id: number): Promise<CommonRes<MessageRecordDTO>>;
|
6043
|
+
/**
|
6044
|
+
* 按天分组获取消息记录分页
|
6045
|
+
* URL: /api/shcp-message/${ShcpApiSdk.getApiSuffix()}/message/record/pageGroupedByDay
|
6046
|
+
*/
|
5605
6047
|
static getPageGroupedByDay(data: MessageRecordQuery): Promise<CommonRes<PagedList<WrapperMessageRecordDTO>>>;
|
6048
|
+
/**
|
6049
|
+
* 更新消息记录
|
6050
|
+
* URL: /api/shcp-message/${ShcpApiSdk.getApiSuffix()}/message/record/update
|
6051
|
+
*/
|
5606
6052
|
static update(data: MessageRecordUpdateRequest): Promise<CommonRes<boolean>>;
|
5607
6053
|
}
|
5608
6054
|
|
5609
6055
|
declare class MineApi {
|
6056
|
+
/**
|
6057
|
+
* 获取用户信息
|
6058
|
+
* URL: /api/blade-system/user/info
|
6059
|
+
*/
|
5610
6060
|
static getUserInfo: (id: string | number) => Promise<CommonRes<UserInfo>>;
|
6061
|
+
/**
|
6062
|
+
* 更新用户信息
|
6063
|
+
* URL: /api/blade-system/user/update-info
|
6064
|
+
*/
|
5611
6065
|
static updateInfo: (data: any) => Promise<any>;
|
6066
|
+
/**
|
6067
|
+
* 获取我的页面配置
|
6068
|
+
* URL: /api/blade-system/${ShcpApiSdk.getApiSuffix()}/appClient/pageConfig/get
|
6069
|
+
*/
|
5612
6070
|
static getMyPageConfig: (data: AppClientPageConfigQuery) => Promise<CommonRes<AppClientPageConfigDTO>>;
|
6071
|
+
/**
|
6072
|
+
* 获取详情内容
|
6073
|
+
* URL: /api/shcp-km/${ShcpApiSdk.getApiSuffix()}/article/content/query
|
6074
|
+
*/
|
5613
6075
|
static getArticleContent: (id: string) => Promise<any>;
|
5614
6076
|
}
|
5615
6077
|
|
5616
6078
|
declare class RightQrcodeApi {
|
6079
|
+
/**
|
6080
|
+
* 获取权益二维码分页
|
6081
|
+
* URL: /api/blade-system/${ShcpApiSdk.getApiSuffix()}/right/qrCode/page
|
6082
|
+
*/
|
5617
6083
|
static getPage(data: RightQrCodeRequest): Promise<CommonRes<PagedList<RightQrCodeDTO>>>;
|
6084
|
+
/**
|
6085
|
+
* 更新权益二维码
|
6086
|
+
* URL: /api/blade-system/${ShcpApiSdk.getApiSuffix()}/right/qrCode/update
|
6087
|
+
*/
|
5618
6088
|
static update(data: RightQrCodeUpdateRequest): Promise<CommonRes<RightQrCodeDTO>>;
|
6089
|
+
/**
|
6090
|
+
* 创建权益二维码
|
6091
|
+
* URL: /api/blade-system/${ShcpApiSdk.getApiSuffix()}/right/qrCode/create
|
6092
|
+
*/
|
5619
6093
|
static create(data: RightQrCodeCreateRequest): Promise<CommonRes<RightQrCodeDTO>>;
|
6094
|
+
/**
|
6095
|
+
* 删除权益二维码
|
6096
|
+
* URL: /api/blade-system/${ShcpApiSdk.getApiSuffix()}/right/qrCode/delete
|
6097
|
+
*/
|
5620
6098
|
static delete(ids: number[]): Promise<CommonRes<any>>;
|
6099
|
+
/**
|
6100
|
+
* 获取权益二维码详情
|
6101
|
+
* URL: /api/blade-system/${ShcpApiSdk.getApiSuffix()}/right/qrCode/detail
|
6102
|
+
*/
|
5621
6103
|
static getDetail(id: number | string): Promise<CommonRes<RightQrCodeDTO>>;
|
5622
6104
|
}
|
5623
6105
|
|
5624
6106
|
declare class RightServiceConfigApi {
|
6107
|
+
/**
|
6108
|
+
* 通用.查询单个(按ID)
|
6109
|
+
* URL: /api/blade-system/${ShcpApiSdk.getApiSuffix()}/right/serviceConfig/detail
|
6110
|
+
*/
|
5625
6111
|
static getDetail(id: number): Promise<CommonRes<RightServiceConfigDTO>>;
|
6112
|
+
/**
|
6113
|
+
* 通用.查询单个(按条件)
|
6114
|
+
* URL: /api/blade-system/${ShcpApiSdk.getApiSuffix()}/right/serviceConfig/get
|
6115
|
+
*/
|
5626
6116
|
static get(data: RightServiceConfigQuery): Promise<CommonRes<RightServiceConfigDTO>>;
|
6117
|
+
/**
|
6118
|
+
* 通用.查询列表
|
6119
|
+
* URL: /api/blade-system/${ShcpApiSdk.getApiSuffix()}/right/serviceConfig/list
|
6120
|
+
*/
|
5627
6121
|
static getList(data: RightServiceConfigQuery): Promise<CommonRes<RightServiceConfigDTO[]>>;
|
6122
|
+
/**
|
6123
|
+
* 慢病管理.查询单个(按ID)
|
6124
|
+
* URL: /api/blade-system/${ShcpApiSdk.getApiSuffix()}/right/serviceConfig/diseaseCare/detail
|
6125
|
+
*/
|
5628
6126
|
static getDiseaseCareDetail(id: number): Promise<CommonRes<DiseaseCareConfigDTO>>;
|
6127
|
+
/**
|
6128
|
+
* 慢病管理.查询单个(按条件)
|
6129
|
+
* URL: /api/blade-system/${ShcpApiSdk.getApiSuffix()}/right/serviceConfig/diseaseCare/get
|
6130
|
+
*/
|
5629
6131
|
static getDiseaseCareConfig(data: RightServiceConfigQuery): Promise<CommonRes<DiseaseCareConfigDTO>>;
|
6132
|
+
/**
|
6133
|
+
* 课题研究.查询单个(按ID)
|
6134
|
+
* URL: /api/blade-system/${ShcpApiSdk.getApiSuffix()}/right/serviceConfig/healthStudy/detail
|
6135
|
+
*/
|
5630
6136
|
static getHealthStudyDetail(id: number): Promise<CommonRes<HealthStudyConfigDTO>>;
|
6137
|
+
/**
|
6138
|
+
* 课题研究.查询单个(按条件)
|
6139
|
+
* URL: /api/blade-system/${ShcpApiSdk.getApiSuffix()}/right/serviceConfig/healthStudy/get
|
6140
|
+
*/
|
5631
6141
|
static getHealthStudyConfig(data: RightServiceConfigQuery): Promise<CommonRes<HealthStudyConfigDTO>>;
|
6142
|
+
/**
|
6143
|
+
* 健康自测.查询单个(按条件)
|
6144
|
+
* URL: /api/blade-system/${ShcpApiSdk.getApiSuffix()}/right/serviceConfig/healthSelfAssessment/get
|
6145
|
+
*/
|
5632
6146
|
static getHealthSelfAssessmentConfig(data: RightServiceConfigQuery): Promise<CommonRes<HealthSelfAssessmentConfigDTO>>;
|
6147
|
+
/**
|
6148
|
+
* 健康档案.查询单个(按条件)
|
6149
|
+
* URL: /api/blade-system/${ShcpApiSdk.getApiSuffix()}/right/serviceConfig/healthProfile/get
|
6150
|
+
*/
|
5633
6151
|
static getHealthProfileConfig(data: RightServiceConfigQuery): Promise<CommonRes<HealthProfileConfigDTO>>;
|
6152
|
+
/**
|
6153
|
+
* 健康工具.查询单个(按条件)
|
6154
|
+
* URL: /api/blade-system/${ShcpApiSdk.getApiSuffix()}/right/serviceConfig/healthTool/get
|
6155
|
+
*/
|
5634
6156
|
static getHealthToolConfig(data: RightServiceConfigQuery): Promise<CommonRes<HealthToolConfigDTO>>;
|
6157
|
+
/**
|
6158
|
+
* 健康咨询.查询单个(按条件)
|
6159
|
+
* URL: /api/blade-system/${ShcpApiSdk.getApiSuffix()}/right/serviceConfig/healthConsult/get
|
6160
|
+
*/
|
5635
6161
|
static getHealthConsultConfig(data: RightServiceConfigQuery): Promise<CommonRes<HealthConsultConfigDTO>>;
|
5636
6162
|
}
|
5637
6163
|
|
5638
6164
|
declare class SystemRightApi {
|
6165
|
+
/**
|
6166
|
+
* 权益详情
|
6167
|
+
* URL: /api/blade-system/${ShcpApiSdk.getApiSuffix()}/right/detail
|
6168
|
+
*/
|
5639
6169
|
static getDetail(params: {
|
5640
6170
|
id: number;
|
5641
6171
|
}): Promise<CommonRes<RightDTO>>;
|
6172
|
+
/**
|
6173
|
+
* 权益列表
|
6174
|
+
* URL: /api/blade-system/${ShcpApiSdk.getApiSuffix()}/right/get
|
6175
|
+
*/
|
5642
6176
|
static get(data: RightQuery): Promise<CommonRes<RightDTO>>;
|
6177
|
+
/**
|
6178
|
+
* 权益列表
|
6179
|
+
* URL: /api/shcp-system/${ShcpApiSdk.getApiSuffix()}/right/listByIds
|
6180
|
+
*/
|
5643
6181
|
static getListByIds(data: number[]): Promise<CommonRes<RightDTO[]>>;
|
6182
|
+
/**
|
6183
|
+
* 权益列表
|
6184
|
+
* URL: /api/blade-system/${ShcpApiSdk.getApiSuffix()}/right/list
|
6185
|
+
*/
|
5644
6186
|
static getList(data: RightQuery): Promise<CommonRes<RightDTO[]>>;
|
6187
|
+
/**
|
6188
|
+
* 权益列表
|
6189
|
+
* URL: /api/blade-system/${ShcpApiSdk.getApiSuffix()}/right/page
|
6190
|
+
*/
|
5645
6191
|
static getPage(data: RightQuery): Promise<CommonRes<PagedList<RightDTO>>>;
|
6192
|
+
/**
|
6193
|
+
* 初始化权益
|
6194
|
+
* URL: /api/shcp-system/${ShcpApiSdk.getApiSuffix()}/right/initRight
|
6195
|
+
*/
|
5646
6196
|
static init(params: {
|
5647
6197
|
tenantId: string;
|
5648
6198
|
}): Promise<CommonRes<any>>;
|
6199
|
+
/**
|
6200
|
+
* 复制
|
6201
|
+
* URL: /api/shcp-system/${ShcpApiSdk.getApiSuffix()}/right/copy
|
6202
|
+
*/
|
5649
6203
|
static copy(data: RightCopyRequest): Promise<CommonRes<RightCopyResponse>>;
|
6204
|
+
/**
|
6205
|
+
* 更新复制配置
|
6206
|
+
* URL: /api/shcp-system/${ShcpApiSdk.getApiSuffix()}/right/updateCopyConfig
|
6207
|
+
*/
|
5650
6208
|
static updateCopyConfig(data: RightServiceConfigCopyUpdateRequest): Promise<CommonRes<any>>;
|
5651
6209
|
}
|
5652
6210
|
|
5653
6211
|
declare class UserGroupApi {
|
6212
|
+
/**
|
6213
|
+
* 更新用户组
|
6214
|
+
* URL: /api/blade-system/${ShcpApiSdk.getApiSuffix()}/userGroup/update
|
6215
|
+
*/
|
5654
6216
|
static update(data: UserGroupUpdateRequest): any;
|
6217
|
+
/**
|
6218
|
+
* 解绑用户
|
6219
|
+
* URL: /api/blade-system/${ShcpApiSdk.getApiSuffix()}/userGroup/unbindUser
|
6220
|
+
*/
|
5655
6221
|
static unbindUser(data: UnbindUserRequest): any;
|
6222
|
+
/**
|
6223
|
+
* 创建用户组
|
6224
|
+
* URL: /api/blade-system/${ShcpApiSdk.getApiSuffix()}/userGroup/create
|
6225
|
+
*/
|
5656
6226
|
static create(data: CreateRequest): any;
|
6227
|
+
/**
|
6228
|
+
* 绑定用户
|
6229
|
+
* URL: /api/blade-system/${ShcpApiSdk.getApiSuffix()}/userGroup/bindUser
|
6230
|
+
*/
|
5657
6231
|
static bindUser(data: BindUserRequest): any;
|
6232
|
+
/**
|
6233
|
+
* 获取用户组树
|
6234
|
+
* URL: /api/blade-system/${ShcpApiSdk.getApiSuffix()}/userGroup/tree
|
6235
|
+
*/
|
5658
6236
|
static getTree(data: QueryTreeRequest): any;
|
6237
|
+
/**
|
6238
|
+
* 获取用户组详情
|
6239
|
+
* URL: /api/blade-system/${ShcpApiSdk.getApiSuffix()}/userGroup/detail
|
6240
|
+
*/
|
5659
6241
|
static getDetail(id: number): any;
|
6242
|
+
/**
|
6243
|
+
* 查询医生管理组用户
|
6244
|
+
* URL: /api/blade-system/${ShcpApiSdk.getApiSuffix()}/userGroup/bladeUserPage
|
6245
|
+
*/
|
5660
6246
|
static getBladeUserPage(data: UserGroupMemberRequest): any;
|
6247
|
+
/**
|
6248
|
+
* 删除用户组
|
6249
|
+
* URL: /api/blade-system/${ShcpApiSdk.getApiSuffix()}/userGroup/delete
|
6250
|
+
*/
|
5661
6251
|
static delete(data: UserGroupDeleteRequest): any;
|
5662
6252
|
}
|
5663
6253
|
|
5664
|
-
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 };
|
5665
|
-
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 };
|
6254
|
+
export { AggregateType, AppCategory, AppCategoryOptions, AppClientApi, AppClientPageConfigApi, AppClientSettingApi, AppPlatformType, ArticleLibType, 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, FormLibType, FormLibraryType, FormLibraryTypeOptions, FormRuleType, FormType, FormTypeOptions, Gender, GenderOptions, GroupJoinType, GroupJoinTypeOptions, HealthCommonApi, HealthMetricApi, HealthProfileApi, HealthRecordType, HealthRecordTypeOptions, HealthSelfAssessApi, HealthServiceType, HealthServiceTypeOptions, HealthStudyPlanExecMethodOptions, HealthStudyServiceFlowStatusOptions, HealthToolApi, HelpCenterApi, HuaWeiWatchMetricCategory, ImUserApi, InterviewServiceTaskStatusOptions, KMForm, KmArticleApi, KmFormApi, KmFormRuleRelationApi, LabelLibType, 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, QuestionItemType, 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, isFormEqual, processFormQueryParams };
|
6255
|
+
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, FormObjectType, 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, KMLibraryType, LibraryTypeOption, 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 };
|