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.esm.js
CHANGED
@@ -835,6 +835,161 @@ var StudyType;
|
|
835
835
|
StudyType[StudyType["Unknown"] = 99] = "Unknown";
|
836
836
|
})(StudyType || (StudyType = {}));
|
837
837
|
|
838
|
+
//todo 以下js定义,后续要慢慢移除
|
839
|
+
const ArticleLibType = {
|
840
|
+
Public: '公开库',
|
841
|
+
Private: '私有库',
|
842
|
+
Draft: '草稿库',
|
843
|
+
Other: '其他租户私有库',
|
844
|
+
};
|
845
|
+
const FormLibType = {
|
846
|
+
Public: '公开库',
|
847
|
+
Private: '私有库',
|
848
|
+
Draft: '草稿库',
|
849
|
+
Other: '其他租户私有库',
|
850
|
+
};
|
851
|
+
const LabelLibType = {
|
852
|
+
Public: '公开库',
|
853
|
+
Private: '私有库',
|
854
|
+
};
|
855
|
+
var FormType;
|
856
|
+
(function (FormType) {
|
857
|
+
FormType[FormType["Form"] = 1] = "Form";
|
858
|
+
FormType[FormType["Tree"] = 2] = "Tree";
|
859
|
+
})(FormType || (FormType = {}));
|
860
|
+
var QuestionItemType;
|
861
|
+
(function (QuestionItemType) {
|
862
|
+
QuestionItemType[QuestionItemType["FirstTitle"] = 1] = "FirstTitle";
|
863
|
+
QuestionItemType[QuestionItemType["SecondTitle"] = 2] = "SecondTitle";
|
864
|
+
QuestionItemType[QuestionItemType["ThirdTitle"] = 3] = "ThirdTitle";
|
865
|
+
QuestionItemType[QuestionItemType["FormItem"] = 4] = "FormItem";
|
866
|
+
})(QuestionItemType || (QuestionItemType = {}));
|
867
|
+
const FormTypeOptions = [
|
868
|
+
{
|
869
|
+
label: '表单',
|
870
|
+
value: FormType.Form,
|
871
|
+
},
|
872
|
+
{
|
873
|
+
label: '表单树',
|
874
|
+
value: FormType.Tree,
|
875
|
+
},
|
876
|
+
];
|
877
|
+
var FormRuleType;
|
878
|
+
(function (FormRuleType) {
|
879
|
+
/** 表单内置评估规则 */
|
880
|
+
FormRuleType[FormRuleType["BuiltInRules"] = 1] = "BuiltInRules";
|
881
|
+
/** 联动计算规则 */
|
882
|
+
FormRuleType[FormRuleType["InlineCalculation"] = 2] = "InlineCalculation";
|
883
|
+
/** 数值检验规则 */
|
884
|
+
FormRuleType[FormRuleType["Validation"] = 3] = "Validation";
|
885
|
+
/** 未知 */
|
886
|
+
FormRuleType[FormRuleType["Unknown"] = 99] = "Unknown";
|
887
|
+
})(FormRuleType || (FormRuleType = {}));
|
888
|
+
var FormLibraryType;
|
889
|
+
(function (FormLibraryType) {
|
890
|
+
FormLibraryType[FormLibraryType["Public"] = 1] = "Public";
|
891
|
+
FormLibraryType[FormLibraryType["Private"] = 2] = "Private";
|
892
|
+
FormLibraryType[FormLibraryType["Draft"] = 3] = "Draft";
|
893
|
+
FormLibraryType[FormLibraryType["Other"] = 4] = "Other";
|
894
|
+
FormLibraryType[FormLibraryType["Custom"] = 1000] = "Custom";
|
895
|
+
})(FormLibraryType || (FormLibraryType = {}));
|
896
|
+
const FormLibraryTypeOptions = [
|
897
|
+
{
|
898
|
+
value: FormLibraryType.Public,
|
899
|
+
label: '公开库',
|
900
|
+
},
|
901
|
+
{
|
902
|
+
value: FormLibraryType.Private,
|
903
|
+
label: '私有库',
|
904
|
+
},
|
905
|
+
{
|
906
|
+
value: FormLibraryType.Draft,
|
907
|
+
label: '草稿库',
|
908
|
+
},
|
909
|
+
{
|
910
|
+
value: FormLibraryType.Other,
|
911
|
+
label: '其他租户私有库',
|
912
|
+
},
|
913
|
+
{
|
914
|
+
value: FormLibraryType.Custom,
|
915
|
+
label: '',
|
916
|
+
},
|
917
|
+
];
|
918
|
+
function processFormQueryParams(params, type, userInfo) {
|
919
|
+
switch (type) {
|
920
|
+
case FormLibraryType.Public: {
|
921
|
+
params.visibility = '*';
|
922
|
+
params.statusList = ['3'];
|
923
|
+
break;
|
924
|
+
}
|
925
|
+
case FormLibraryType.Private: {
|
926
|
+
params.visibility = userInfo.tenantId;
|
927
|
+
if (params.status) {
|
928
|
+
params.statusList = [params.status];
|
929
|
+
}
|
930
|
+
else {
|
931
|
+
params.statusList = ['2', '4'];
|
932
|
+
}
|
933
|
+
break;
|
934
|
+
}
|
935
|
+
case FormLibraryType.Draft: {
|
936
|
+
params.visibility = userInfo.tenantId;
|
937
|
+
params.isDraft = 1;
|
938
|
+
params.statusList = ['1', '2'];
|
939
|
+
break;
|
940
|
+
}
|
941
|
+
case FormLibraryType.Other: {
|
942
|
+
params.statusList = ['2', '4'];
|
943
|
+
break;
|
944
|
+
}
|
945
|
+
}
|
946
|
+
}
|
947
|
+
//对比两个表单是否一致
|
948
|
+
function isFormEqual(left, right) {
|
949
|
+
if (left === right) {
|
950
|
+
return true;
|
951
|
+
}
|
952
|
+
if (left.id !== right.id) {
|
953
|
+
return false;
|
954
|
+
}
|
955
|
+
if ((left.value || '') != (right.value || '')) {
|
956
|
+
return false;
|
957
|
+
}
|
958
|
+
if (left.group) {
|
959
|
+
if (left.group.length != right.group.length) {
|
960
|
+
return false;
|
961
|
+
}
|
962
|
+
for (let i = 0; i < left.group.length; i++) {
|
963
|
+
if (!isFormEqual(left.group[i], right.group[i])) {
|
964
|
+
return false;
|
965
|
+
}
|
966
|
+
}
|
967
|
+
}
|
968
|
+
// 如果有子项,递归查找
|
969
|
+
if ('column' in left && left.column?.length) {
|
970
|
+
if (left.column.length != right.column.length) {
|
971
|
+
return false;
|
972
|
+
}
|
973
|
+
for (let i = 0; i < left.column.length; i++) {
|
974
|
+
if (!isFormEqual(left.column[i], right.column[i])) {
|
975
|
+
return false;
|
976
|
+
}
|
977
|
+
}
|
978
|
+
}
|
979
|
+
// 如果是动态类型且有子项,递归查找
|
980
|
+
if ('children' in left && left.children?.column?.length) {
|
981
|
+
if (left.children.column.length != right.children.column.length) {
|
982
|
+
return false;
|
983
|
+
}
|
984
|
+
for (let i = 0; i < left.children.column.length; i++) {
|
985
|
+
if (!isFormEqual(left.children.column[i], right.children.column[i])) {
|
986
|
+
return false;
|
987
|
+
}
|
988
|
+
}
|
989
|
+
}
|
990
|
+
return true;
|
991
|
+
}
|
992
|
+
|
838
993
|
class _ShcpApiSdk {
|
839
994
|
init(config) {
|
840
995
|
this.config = config;
|
@@ -860,8 +1015,10 @@ class _ShcpApiSdk {
|
|
860
1015
|
const ShcpApiSdk = new _ShcpApiSdk();
|
861
1016
|
|
862
1017
|
class AppClientApi {
|
863
|
-
|
864
|
-
|
1018
|
+
/*
|
1019
|
+
* 查询单个(按ID)
|
1020
|
+
* URL: /api/blade-system/${ShcpApiSdk.getApiSuffix()}/appClient/detail
|
1021
|
+
*/
|
865
1022
|
static getDetail(data) {
|
866
1023
|
return ShcpApiSdk.request({
|
867
1024
|
url: `/api/blade-system/${ShcpApiSdk.getApiSuffix()}/appClient/detail`,
|
@@ -869,8 +1026,10 @@ class AppClientApi {
|
|
869
1026
|
data,
|
870
1027
|
});
|
871
1028
|
}
|
872
|
-
|
873
|
-
|
1029
|
+
/*
|
1030
|
+
* 查询单个(按条件)
|
1031
|
+
* URL: /api/blade-system/${ShcpApiSdk.getApiSuffix()}/appClient/get
|
1032
|
+
*/
|
874
1033
|
static get(data) {
|
875
1034
|
return ShcpApiSdk.request({
|
876
1035
|
url: `/api/blade-system/${ShcpApiSdk.getApiSuffix()}/appClient/get`,
|
@@ -878,8 +1037,10 @@ class AppClientApi {
|
|
878
1037
|
data,
|
879
1038
|
});
|
880
1039
|
}
|
881
|
-
|
882
|
-
|
1040
|
+
/*
|
1041
|
+
* 查询列表
|
1042
|
+
* URL: /api/blade-system/${ShcpApiSdk.getApiSuffix()}/appClient/list
|
1043
|
+
*/
|
883
1044
|
static getList(data) {
|
884
1045
|
return ShcpApiSdk.request({
|
885
1046
|
url: `/api/blade-system/${ShcpApiSdk.getApiSuffix()}/appClient/list`,
|
@@ -887,8 +1048,10 @@ class AppClientApi {
|
|
887
1048
|
data,
|
888
1049
|
});
|
889
1050
|
}
|
890
|
-
|
891
|
-
|
1051
|
+
/*
|
1052
|
+
* 查询列表(capp彩蛋使用)
|
1053
|
+
* URL: /api/blade-system/${ShcpApiSdk.getApiSuffix()}/appClient/specialList
|
1054
|
+
*/
|
892
1055
|
static getSpecialList(data) {
|
893
1056
|
return ShcpApiSdk.request({
|
894
1057
|
url: `/api/blade-system/${ShcpApiSdk.getApiSuffix()}/appClient/specialList`,
|
@@ -896,8 +1059,10 @@ class AppClientApi {
|
|
896
1059
|
data,
|
897
1060
|
});
|
898
1061
|
}
|
899
|
-
|
900
|
-
|
1062
|
+
/*
|
1063
|
+
* 复制
|
1064
|
+
* URL: /api/blade-system/${ShcpApiSdk.getApiSuffix()}/appClient/copy
|
1065
|
+
*/
|
901
1066
|
static copy(data) {
|
902
1067
|
return ShcpApiSdk.request({
|
903
1068
|
url: `/api/blade-system/${ShcpApiSdk.getApiSuffix()}/appClient/copy`,
|
@@ -905,8 +1070,10 @@ class AppClientApi {
|
|
905
1070
|
data,
|
906
1071
|
});
|
907
1072
|
}
|
908
|
-
|
909
|
-
|
1073
|
+
/*
|
1074
|
+
* 更新复制配置
|
1075
|
+
* URL: /api/blade-system/${ShcpApiSdk.getApiSuffix()}/appClient/updateCopyConfig
|
1076
|
+
*/
|
910
1077
|
static updateCopyConfig(data) {
|
911
1078
|
return ShcpApiSdk.request({
|
912
1079
|
url: `/api/blade-system/${ShcpApiSdk.getApiSuffix()}/appClient/updateCopyConfig`,
|
@@ -917,8 +1084,10 @@ class AppClientApi {
|
|
917
1084
|
}
|
918
1085
|
|
919
1086
|
class AppClientPageConfigApi {
|
920
|
-
|
921
|
-
|
1087
|
+
/**
|
1088
|
+
* 查询列表
|
1089
|
+
* URL: /api/blade-system/${ShcpApiSdk.getApiSuffix()}/appClient/pageConfig/list
|
1090
|
+
*/
|
922
1091
|
static getList(data) {
|
923
1092
|
return ShcpApiSdk.request({
|
924
1093
|
url: `/api/blade-system/${ShcpApiSdk.getApiSuffix()}/appClient/pageConfig/list`,
|
@@ -929,8 +1098,10 @@ class AppClientPageConfigApi {
|
|
929
1098
|
}
|
930
1099
|
|
931
1100
|
class AppClientSettingApi {
|
932
|
-
|
933
|
-
|
1101
|
+
/**
|
1102
|
+
* 查询单个
|
1103
|
+
* URL: /api/blade-system/${ShcpApiSdk.getApiSuffix()}/appClient/setting/get
|
1104
|
+
*/
|
934
1105
|
static get(data) {
|
935
1106
|
return ShcpApiSdk.request({
|
936
1107
|
url: `/api/blade-system/${ShcpApiSdk.getApiSuffix()}/appClient/setting/get`,
|
@@ -941,8 +1112,10 @@ class AppClientSettingApi {
|
|
941
1112
|
}
|
942
1113
|
|
943
1114
|
class CommonDictApi {
|
944
|
-
|
945
|
-
|
1115
|
+
/**
|
1116
|
+
* 查询单个详情
|
1117
|
+
* URL: /api/blade-system/dict/detail
|
1118
|
+
*/
|
946
1119
|
static getDetail(data) {
|
947
1120
|
return ShcpApiSdk.request({
|
948
1121
|
url: '/api/blade-system/dict/detail',
|
@@ -1203,8 +1376,10 @@ class FileApi {
|
|
1203
1376
|
}
|
1204
1377
|
|
1205
1378
|
class CommonRightApi {
|
1206
|
-
|
1207
|
-
|
1379
|
+
/**
|
1380
|
+
* 获取权益列表
|
1381
|
+
* URL: /api/shcp-healthcare/${ShcpApiSdk.getApiSuffix()}/right/list
|
1382
|
+
*/
|
1208
1383
|
static getRightList(data) {
|
1209
1384
|
return ShcpApiSdk.request({
|
1210
1385
|
url: `/api/shcp-healthcare/${ShcpApiSdk.getApiSuffix()}/right/list`,
|
@@ -1212,8 +1387,10 @@ class CommonRightApi {
|
|
1212
1387
|
data,
|
1213
1388
|
});
|
1214
1389
|
}
|
1215
|
-
|
1216
|
-
|
1390
|
+
/**
|
1391
|
+
* 服务流程分页查询
|
1392
|
+
* URL: /api/shcp-healthcare/${ShcpApiSdk.getApiSuffix()}/serviceFlow/page
|
1393
|
+
*/
|
1217
1394
|
static flowPage(data) {
|
1218
1395
|
data.detailMode = true;
|
1219
1396
|
return ShcpApiSdk.request({
|
@@ -1226,8 +1403,10 @@ class CommonRightApi {
|
|
1226
1403
|
},
|
1227
1404
|
});
|
1228
1405
|
}
|
1229
|
-
|
1230
|
-
|
1406
|
+
/**
|
1407
|
+
* 服务任务分页查询
|
1408
|
+
* URL: /api/shcp-healthcare/${ShcpApiSdk.getApiSuffix()}/serviceTask/page
|
1409
|
+
*/
|
1231
1410
|
static taskPage(data) {
|
1232
1411
|
data.detailMode = true;
|
1233
1412
|
return ShcpApiSdk.request({
|
@@ -1240,8 +1419,10 @@ class CommonRightApi {
|
|
1240
1419
|
},
|
1241
1420
|
});
|
1242
1421
|
}
|
1243
|
-
|
1244
|
-
|
1422
|
+
/**
|
1423
|
+
* 服务流程.列表查询
|
1424
|
+
* URL: /api/shcp-healthcare/${ShcpApiSdk.getApiSuffix()}/serviceFlow/list
|
1425
|
+
*/
|
1245
1426
|
static listServiceFlow(query) {
|
1246
1427
|
return ShcpApiSdk.request({
|
1247
1428
|
url: `/api/shcp-healthcare/${ShcpApiSdk.getApiSuffix()}/serviceFlow/list`,
|
@@ -1249,8 +1430,10 @@ class CommonRightApi {
|
|
1249
1430
|
data: query,
|
1250
1431
|
});
|
1251
1432
|
}
|
1252
|
-
|
1253
|
-
|
1433
|
+
/**
|
1434
|
+
* 服务流程配置详情
|
1435
|
+
* URL: /api/shcp-healthcare/${ShcpApiSdk.getApiSuffix()}/serviceFlow/config/detail
|
1436
|
+
*/
|
1254
1437
|
static detailServiceFlowConfig(flowId) {
|
1255
1438
|
return ShcpApiSdk.request({
|
1256
1439
|
url: `/api/shcp-healthcare/${ShcpApiSdk.getApiSuffix()}/serviceFlow/config/detail`,
|
@@ -1258,8 +1441,10 @@ class CommonRightApi {
|
|
1258
1441
|
params: { flowId },
|
1259
1442
|
});
|
1260
1443
|
}
|
1261
|
-
|
1262
|
-
|
1444
|
+
/**
|
1445
|
+
* 服务任务用户分页查询
|
1446
|
+
* URL: /api/shcp-healthcare/${ShcpApiSdk.getApiSuffix()}/serviceTask/user/page
|
1447
|
+
*/
|
1263
1448
|
static pageServiceTaskUser(data) {
|
1264
1449
|
return ShcpApiSdk.request({
|
1265
1450
|
url: `/api/shcp-healthcare/${ShcpApiSdk.getApiSuffix()}/serviceTask/user/page`,
|
@@ -1314,8 +1499,10 @@ class CommonRightApi {
|
|
1314
1499
|
data,
|
1315
1500
|
});
|
1316
1501
|
}
|
1317
|
-
|
1318
|
-
|
1502
|
+
/**
|
1503
|
+
* 通用任务启动
|
1504
|
+
* URL: /api/shcp-healthcare/${ShcpApiSdk.getApiSuffix()}/${serviceTypeEnName}/start
|
1505
|
+
*/
|
1319
1506
|
static commonTaskStart(serviceTypeEnName, data) {
|
1320
1507
|
return ShcpApiSdk.request({
|
1321
1508
|
url: `/api/shcp-healthcare/${ShcpApiSdk.getApiSuffix()}/${serviceTypeEnName}/start`,
|
@@ -1392,8 +1579,10 @@ class CommonRightApi {
|
|
1392
1579
|
}
|
1393
1580
|
|
1394
1581
|
class ConsumerApi {
|
1395
|
-
|
1396
|
-
|
1582
|
+
/**
|
1583
|
+
* 获取医生列表
|
1584
|
+
* URL: /api/shcp-consumer/${ShcpApiSdk.getApiSuffix()}/consumerRight/listDoctor
|
1585
|
+
*/
|
1397
1586
|
static getDoctorList(data) {
|
1398
1587
|
return ShcpApiSdk.request({
|
1399
1588
|
url: `/api/shcp-consumer/${ShcpApiSdk.getApiSuffix()}/consumerRight/listDoctor`,
|
@@ -1401,8 +1590,10 @@ class ConsumerApi {
|
|
1401
1590
|
data,
|
1402
1591
|
});
|
1403
1592
|
}
|
1404
|
-
|
1405
|
-
|
1593
|
+
/**
|
1594
|
+
* 获取成员分页
|
1595
|
+
* URL: /api/shcp-consumer/${ShcpApiSdk.getApiSuffix()}/consumer/group/member/page
|
1596
|
+
*/
|
1406
1597
|
static getMemberPage(data) {
|
1407
1598
|
return ShcpApiSdk.request({
|
1408
1599
|
url: `/api/shcp-consumer/${ShcpApiSdk.getApiSuffix()}/consumer/group/member/page`,
|
@@ -1411,8 +1602,10 @@ class ConsumerApi {
|
|
1411
1602
|
params: { current: data.current, size: data.size },
|
1412
1603
|
});
|
1413
1604
|
}
|
1414
|
-
|
1415
|
-
|
1605
|
+
/**
|
1606
|
+
* 批量新增
|
1607
|
+
* URL: /api/shcp-consumer/${ShcpApiSdk.getApiSuffix()}/consumer/group/member/create
|
1608
|
+
*/
|
1416
1609
|
static batchCreateMember(data) {
|
1417
1610
|
return ShcpApiSdk.request({
|
1418
1611
|
url: `/api/shcp-consumer/${ShcpApiSdk.getApiSuffix()}/consumer/group/member/create`,
|
@@ -1420,8 +1613,10 @@ class ConsumerApi {
|
|
1420
1613
|
data,
|
1421
1614
|
});
|
1422
1615
|
}
|
1423
|
-
|
1424
|
-
|
1616
|
+
/**
|
1617
|
+
* 列表查询成员
|
1618
|
+
* URL: /api/shcp-consumer/${ShcpApiSdk.getApiSuffix()}/consumer/group/member/list
|
1619
|
+
*/
|
1425
1620
|
static listMember(data) {
|
1426
1621
|
return ShcpApiSdk.request({
|
1427
1622
|
url: `/api/shcp-consumer/${ShcpApiSdk.getApiSuffix()}/consumer/group/member/list`,
|
@@ -1429,8 +1624,10 @@ class ConsumerApi {
|
|
1429
1624
|
data,
|
1430
1625
|
});
|
1431
1626
|
}
|
1432
|
-
|
1433
|
-
|
1627
|
+
/**
|
1628
|
+
* 更新成员
|
1629
|
+
* URL: /api/shcp-consumer/${ShcpApiSdk.getApiSuffix()}/consumer/group/member/update
|
1630
|
+
*/
|
1434
1631
|
static updateMember(data) {
|
1435
1632
|
return ShcpApiSdk.request({
|
1436
1633
|
url: `/api/shcp-consumer/${ShcpApiSdk.getApiSuffix()}/consumer/group/member/update`,
|
@@ -1438,8 +1635,10 @@ class ConsumerApi {
|
|
1438
1635
|
data,
|
1439
1636
|
});
|
1440
1637
|
}
|
1441
|
-
|
1442
|
-
|
1638
|
+
/**
|
1639
|
+
* 获取组详情
|
1640
|
+
* URL: /api/shcp-consumer/${ShcpApiSdk.getApiSuffix()}/consumer/group/detail
|
1641
|
+
*/
|
1443
1642
|
static getGroupDetail(id) {
|
1444
1643
|
return ShcpApiSdk.request({
|
1445
1644
|
url: `/api/shcp-consumer/${ShcpApiSdk.getApiSuffix()}/consumer/group/detail`,
|
@@ -1447,8 +1646,10 @@ class ConsumerApi {
|
|
1447
1646
|
data: { id },
|
1448
1647
|
});
|
1449
1648
|
}
|
1450
|
-
|
1451
|
-
|
1649
|
+
/**
|
1650
|
+
* 获取组分页
|
1651
|
+
* URL: /api/shcp-consumer/${ShcpApiSdk.getApiSuffix()}/consumer/group/page
|
1652
|
+
*/
|
1452
1653
|
static getGroupPage(data) {
|
1453
1654
|
return ShcpApiSdk.request({
|
1454
1655
|
url: `/api/shcp-consumer/${ShcpApiSdk.getApiSuffix()}/consumer/group/page`,
|
@@ -1457,8 +1658,10 @@ class ConsumerApi {
|
|
1457
1658
|
params: { current: data.current, size: data.size },
|
1458
1659
|
});
|
1459
1660
|
}
|
1460
|
-
|
1461
|
-
|
1661
|
+
/**
|
1662
|
+
* 根据ID列表查询
|
1663
|
+
* URL: /api/shcp-consumer/${ShcpApiSdk.getApiSuffix()}/consumer/group/listByIds
|
1664
|
+
*/
|
1462
1665
|
static getListByIds(data) {
|
1463
1666
|
return ShcpApiSdk.request({
|
1464
1667
|
url: `/api/shcp-consumer/${ShcpApiSdk.getApiSuffix()}/consumer/group/listByIds`,
|
@@ -1466,8 +1669,10 @@ class ConsumerApi {
|
|
1466
1669
|
data,
|
1467
1670
|
});
|
1468
1671
|
}
|
1469
|
-
|
1470
|
-
|
1672
|
+
/**
|
1673
|
+
* 获取树形结构
|
1674
|
+
* URL: /api/shcp-consumer/${ShcpApiSdk.getApiSuffix()}/consumer/group/tree
|
1675
|
+
*/
|
1471
1676
|
static getTree(data) {
|
1472
1677
|
return ShcpApiSdk.request({
|
1473
1678
|
url: `/api/shcp-consumer/${ShcpApiSdk.getApiSuffix()}/consumer/group/tree`,
|
@@ -1475,8 +1680,10 @@ class ConsumerApi {
|
|
1475
1680
|
params: { id: data.rootId },
|
1476
1681
|
});
|
1477
1682
|
}
|
1478
|
-
|
1479
|
-
|
1683
|
+
/**
|
1684
|
+
* 更新组
|
1685
|
+
* URL: /api/shcp-consumer/${ShcpApiSdk.getApiSuffix()}/consumer/group/update
|
1686
|
+
*/
|
1480
1687
|
static updateGroup(data) {
|
1481
1688
|
return ShcpApiSdk.request({
|
1482
1689
|
url: `/api/shcp-consumer/${ShcpApiSdk.getApiSuffix()}/consumer/group/update`,
|
@@ -1484,8 +1691,10 @@ class ConsumerApi {
|
|
1484
1691
|
data,
|
1485
1692
|
});
|
1486
1693
|
}
|
1487
|
-
|
1488
|
-
|
1694
|
+
/**
|
1695
|
+
* 创建组
|
1696
|
+
* URL: /api/shcp-consumer/${ShcpApiSdk.getApiSuffix()}/consumer/group/create
|
1697
|
+
*/
|
1489
1698
|
static createGroup(data) {
|
1490
1699
|
return ShcpApiSdk.request({
|
1491
1700
|
url: `/api/shcp-consumer/${ShcpApiSdk.getApiSuffix()}/consumer/group/create`,
|
@@ -1493,8 +1702,10 @@ class ConsumerApi {
|
|
1493
1702
|
data,
|
1494
1703
|
});
|
1495
1704
|
}
|
1496
|
-
|
1497
|
-
|
1705
|
+
/**
|
1706
|
+
* 删除组
|
1707
|
+
* URL: /api/shcp-consumer/${ShcpApiSdk.getApiSuffix()}/consumer/group/delete
|
1708
|
+
*/
|
1498
1709
|
static deleteGroup(data) {
|
1499
1710
|
return ShcpApiSdk.request({
|
1500
1711
|
url: `/api/shcp-consumer/${ShcpApiSdk.getApiSuffix()}/consumer/group/delete`,
|
@@ -1502,8 +1713,10 @@ class ConsumerApi {
|
|
1502
1713
|
data,
|
1503
1714
|
});
|
1504
1715
|
}
|
1505
|
-
|
1506
|
-
|
1716
|
+
/**
|
1717
|
+
* 更新消费者
|
1718
|
+
* URL: /api/shcp-consumer/${ShcpApiSdk.getApiSuffix()}/consumer/update
|
1719
|
+
*/
|
1507
1720
|
static update(data) {
|
1508
1721
|
return ShcpApiSdk.request({
|
1509
1722
|
url: `/api/shcp-consumer/${ShcpApiSdk.getApiSuffix()}/consumer/update`,
|
@@ -1511,8 +1724,10 @@ class ConsumerApi {
|
|
1511
1724
|
data,
|
1512
1725
|
});
|
1513
1726
|
}
|
1514
|
-
|
1515
|
-
|
1727
|
+
/**
|
1728
|
+
* 创建消费者
|
1729
|
+
* URL: /api/shcp-consumer/${ShcpApiSdk.getApiSuffix()}/consumer/create
|
1730
|
+
*/
|
1516
1731
|
static create(data) {
|
1517
1732
|
return ShcpApiSdk.request({
|
1518
1733
|
url: `/api/shcp-consumer/${ShcpApiSdk.getApiSuffix()}/consumer/create`,
|
@@ -1525,8 +1740,10 @@ class ConsumerApi {
|
|
1525
1740
|
},
|
1526
1741
|
});
|
1527
1742
|
}
|
1528
|
-
|
1529
|
-
|
1743
|
+
/**
|
1744
|
+
* 查询消费者列表
|
1745
|
+
* URL: /api/shcp-consumer/${ShcpApiSdk.getApiSuffix()}/consumer/list
|
1746
|
+
*/
|
1530
1747
|
static list(data) {
|
1531
1748
|
return ShcpApiSdk.request({
|
1532
1749
|
url: `/api/shcp-consumer/${ShcpApiSdk.getApiSuffix()}/consumer/list`,
|
@@ -1534,8 +1751,10 @@ class ConsumerApi {
|
|
1534
1751
|
data,
|
1535
1752
|
});
|
1536
1753
|
}
|
1537
|
-
|
1538
|
-
|
1754
|
+
/**
|
1755
|
+
* 查询单个消费者
|
1756
|
+
* URL: /api/shcp-consumer/${ShcpApiSdk.getApiSuffix()}/consumer/get
|
1757
|
+
*/
|
1539
1758
|
static get(data) {
|
1540
1759
|
return ShcpApiSdk.request({
|
1541
1760
|
url: `/api/shcp-consumer/${ShcpApiSdk.getApiSuffix()}/consumer/get`,
|
@@ -1543,8 +1762,10 @@ class ConsumerApi {
|
|
1543
1762
|
data,
|
1544
1763
|
});
|
1545
1764
|
}
|
1546
|
-
|
1547
|
-
|
1765
|
+
/**
|
1766
|
+
* 查询消费用户权益
|
1767
|
+
* URL: /api/shcp-consumer/${ShcpApiSdk.getApiSuffix()}/consumerRight/detail
|
1768
|
+
*/
|
1548
1769
|
static getRightDetail(id) {
|
1549
1770
|
return ShcpApiSdk.request({
|
1550
1771
|
url: `/api/shcp-consumer/${ShcpApiSdk.getApiSuffix()}/consumerRight/detail`,
|
@@ -1552,8 +1773,10 @@ class ConsumerApi {
|
|
1552
1773
|
params: { id },
|
1553
1774
|
});
|
1554
1775
|
}
|
1555
|
-
|
1556
|
-
|
1776
|
+
/**
|
1777
|
+
* 查询消费用户权益
|
1778
|
+
* URL: /api/shcp-consumer/${ShcpApiSdk.getApiSuffix()}/consumerRight/get
|
1779
|
+
*/
|
1557
1780
|
static getRight(data) {
|
1558
1781
|
return ShcpApiSdk.request({
|
1559
1782
|
url: `/api/shcp-consumer/${ShcpApiSdk.getApiSuffix()}/consumerRight/get`,
|
@@ -1561,8 +1784,10 @@ class ConsumerApi {
|
|
1561
1784
|
data,
|
1562
1785
|
});
|
1563
1786
|
}
|
1564
|
-
|
1565
|
-
|
1787
|
+
/**
|
1788
|
+
* 查询消费用户权益
|
1789
|
+
* URL: /api/shcp-consumer/${ShcpApiSdk.getApiSuffix()}/consumerRight/list
|
1790
|
+
*/
|
1566
1791
|
static getRightList(data) {
|
1567
1792
|
return ShcpApiSdk.request({
|
1568
1793
|
url: `/api/shcp-consumer/${ShcpApiSdk.getApiSuffix()}/consumerRight/list`,
|
@@ -1570,8 +1795,10 @@ class ConsumerApi {
|
|
1570
1795
|
data,
|
1571
1796
|
});
|
1572
1797
|
}
|
1573
|
-
|
1574
|
-
|
1798
|
+
/**
|
1799
|
+
* 查询消费用户权益
|
1800
|
+
* URL: /api/shcp-consumer/${ShcpApiSdk.getApiSuffix()}/consumerRight/page
|
1801
|
+
*/
|
1575
1802
|
static getRightPage(data) {
|
1576
1803
|
return ShcpApiSdk.request({
|
1577
1804
|
url: `/api/shcp-consumer/${ShcpApiSdk.getApiSuffix()}/consumerRight/page`,
|
@@ -1583,8 +1810,10 @@ class ConsumerApi {
|
|
1583
1810
|
},
|
1584
1811
|
});
|
1585
1812
|
}
|
1586
|
-
|
1587
|
-
|
1813
|
+
/**
|
1814
|
+
* 创建消费用户权益
|
1815
|
+
* URL: /api/shcp-consumer/${ShcpApiSdk.getApiSuffix()}/consumerRight/create
|
1816
|
+
*/
|
1588
1817
|
static createRight(data) {
|
1589
1818
|
return ShcpApiSdk.request({
|
1590
1819
|
url: `/api/shcp-consumer/${ShcpApiSdk.getApiSuffix()}/consumerRight/create`,
|
@@ -1592,8 +1821,10 @@ class ConsumerApi {
|
|
1592
1821
|
data,
|
1593
1822
|
});
|
1594
1823
|
}
|
1595
|
-
|
1596
|
-
|
1824
|
+
/**
|
1825
|
+
* 批量创建消费用户权益
|
1826
|
+
* URL: /api/shcp-consumer/${ShcpApiSdk.getApiSuffix()}/consumerRight/batchCreate
|
1827
|
+
*/
|
1597
1828
|
static batchCreateRight(data) {
|
1598
1829
|
return ShcpApiSdk.request({
|
1599
1830
|
url: `/api/shcp-consumer/${ShcpApiSdk.getApiSuffix()}/consumerRight/batchCreate`,
|
@@ -1601,8 +1832,10 @@ class ConsumerApi {
|
|
1601
1832
|
data,
|
1602
1833
|
});
|
1603
1834
|
}
|
1604
|
-
|
1605
|
-
|
1835
|
+
/**
|
1836
|
+
* 删除消费用户权益
|
1837
|
+
* URL: /api/shcp-consumer/${ShcpApiSdk.getApiSuffix()}/consumerRight/delete
|
1838
|
+
*/
|
1606
1839
|
static deleteRight(data) {
|
1607
1840
|
return ShcpApiSdk.request({
|
1608
1841
|
url: `/api/shcp-consumer/${ShcpApiSdk.getApiSuffix()}/consumerRight/delete`,
|
@@ -1623,8 +1856,10 @@ const crudConsumerApi = {
|
|
1623
1856
|
};
|
1624
1857
|
|
1625
1858
|
class ConsumerBindApi {
|
1626
|
-
|
1627
|
-
|
1859
|
+
/**
|
1860
|
+
* 更改
|
1861
|
+
* URL: /api/shcp-consumer/consumerBind/update
|
1862
|
+
*/
|
1628
1863
|
static update(data) {
|
1629
1864
|
return ShcpApiSdk.request({
|
1630
1865
|
url: '/api/shcp-consumer/consumerBind/update',
|
@@ -1632,8 +1867,10 @@ class ConsumerBindApi {
|
|
1632
1867
|
data,
|
1633
1868
|
});
|
1634
1869
|
}
|
1635
|
-
|
1636
|
-
|
1870
|
+
/**
|
1871
|
+
* 新增
|
1872
|
+
* URL: /api/shcp-consumer/consumerBind/bind
|
1873
|
+
*/
|
1637
1874
|
static create(data) {
|
1638
1875
|
return ShcpApiSdk.request({
|
1639
1876
|
url: '/api/shcp-consumer/consumerBind/bind',
|
@@ -1641,8 +1878,10 @@ class ConsumerBindApi {
|
|
1641
1878
|
data,
|
1642
1879
|
});
|
1643
1880
|
}
|
1644
|
-
|
1645
|
-
|
1881
|
+
/**
|
1882
|
+
* 删除
|
1883
|
+
* URL: /api/shcp-consumer/consumerBind/delete
|
1884
|
+
*/
|
1646
1885
|
static delete(data) {
|
1647
1886
|
return ShcpApiSdk.request({
|
1648
1887
|
url: '/api/shcp-consumer/consumerBind/delete',
|
@@ -1650,8 +1889,10 @@ class ConsumerBindApi {
|
|
1650
1889
|
data,
|
1651
1890
|
});
|
1652
1891
|
}
|
1653
|
-
|
1654
|
-
|
1892
|
+
/**
|
1893
|
+
* 设备用户绑定的消费用户列表
|
1894
|
+
* URL: /api/shcp-consumer/consumerBind/list
|
1895
|
+
*/
|
1655
1896
|
static getList(params) {
|
1656
1897
|
return ShcpApiSdk.request({
|
1657
1898
|
url: '/api/shcp-consumer/consumerBind/list',
|
@@ -1659,8 +1900,10 @@ class ConsumerBindApi {
|
|
1659
1900
|
params,
|
1660
1901
|
});
|
1661
1902
|
}
|
1662
|
-
|
1663
|
-
|
1903
|
+
/**
|
1904
|
+
* 发送绑定用户验证码
|
1905
|
+
* URL: /api/shcp-consumer/consumerBind/sendSMSCode
|
1906
|
+
*/
|
1664
1907
|
static sendSMSCode(params) {
|
1665
1908
|
return ShcpApiSdk.request({
|
1666
1909
|
url: '/api/shcp-consumer/consumerBind/sendSMSCode',
|
@@ -1668,8 +1911,10 @@ class ConsumerBindApi {
|
|
1668
1911
|
params,
|
1669
1912
|
});
|
1670
1913
|
}
|
1671
|
-
|
1672
|
-
|
1914
|
+
/**
|
1915
|
+
* 验证码校验
|
1916
|
+
* URL: /api/shcp-consumer/consumerBind/verifySMSCode
|
1917
|
+
*/
|
1673
1918
|
static verifySMSCode(params) {
|
1674
1919
|
return ShcpApiSdk.request({
|
1675
1920
|
url: '/api/shcp-consumer/consumerBind/verifySMSCode',
|
@@ -1677,8 +1922,10 @@ class ConsumerBindApi {
|
|
1677
1922
|
params,
|
1678
1923
|
});
|
1679
1924
|
}
|
1680
|
-
|
1681
|
-
|
1925
|
+
/**
|
1926
|
+
* 激活
|
1927
|
+
* URL: /api/shcp-consumer/consumerBind/active
|
1928
|
+
*/
|
1682
1929
|
static active(data) {
|
1683
1930
|
return ShcpApiSdk.request({
|
1684
1931
|
url: '/api/shcp-consumer/consumerBind/active',
|
@@ -1686,8 +1933,10 @@ class ConsumerBindApi {
|
|
1686
1933
|
data,
|
1687
1934
|
});
|
1688
1935
|
}
|
1689
|
-
|
1690
|
-
|
1936
|
+
/**
|
1937
|
+
* 单个查询
|
1938
|
+
* URL: /api/shcp-consumer/consumerBind/get
|
1939
|
+
*/
|
1691
1940
|
static get(params) {
|
1692
1941
|
return ShcpApiSdk.request({
|
1693
1942
|
url: '/api/shcp-consumer/consumerBind/get',
|
@@ -1745,8 +1994,10 @@ class ConsumerDeviceApi {
|
|
1745
1994
|
}
|
1746
1995
|
|
1747
1996
|
class ConsumerFavoriteApi {
|
1748
|
-
|
1749
|
-
|
1997
|
+
/**
|
1998
|
+
* 消费用户收藏列表
|
1999
|
+
* URL: /api/shcp-consumer/${ShcpApiSdk.getApiSuffix()}/consumer/favorite/page
|
2000
|
+
*/
|
1750
2001
|
static getPage(data) {
|
1751
2002
|
return ShcpApiSdk.request({
|
1752
2003
|
url: `/api/shcp-consumer/${ShcpApiSdk.getApiSuffix()}/consumer/favorite/page`,
|
@@ -1758,8 +2009,10 @@ class ConsumerFavoriteApi {
|
|
1758
2009
|
},
|
1759
2010
|
});
|
1760
2011
|
}
|
1761
|
-
|
1762
|
-
|
2012
|
+
/**
|
2013
|
+
* 创建消费用户收藏
|
2014
|
+
* URL: /api/shcp-consumer/${ShcpApiSdk.getApiSuffix()}/consumer/favorite/create
|
2015
|
+
*/
|
1763
2016
|
static create(data) {
|
1764
2017
|
return ShcpApiSdk.request({
|
1765
2018
|
url: `/api/shcp-consumer/${ShcpApiSdk.getApiSuffix()}/consumer/favorite/create`,
|
@@ -1767,8 +2020,10 @@ class ConsumerFavoriteApi {
|
|
1767
2020
|
data,
|
1768
2021
|
});
|
1769
2022
|
}
|
1770
|
-
|
1771
|
-
|
2023
|
+
/**
|
2024
|
+
* 检查是否收藏
|
2025
|
+
* URL: /api/shcp-consumer/${ShcpApiSdk.getApiSuffix()}/consumer/favorite/checkFavorite
|
2026
|
+
*/
|
1772
2027
|
static checkFavorite(params) {
|
1773
2028
|
return ShcpApiSdk.request({
|
1774
2029
|
url: `/api/shcp-consumer/${ShcpApiSdk.getApiSuffix()}/consumer/favorite/checkFavorite`,
|
@@ -1776,8 +2031,10 @@ class ConsumerFavoriteApi {
|
|
1776
2031
|
params,
|
1777
2032
|
});
|
1778
2033
|
}
|
1779
|
-
|
1780
|
-
|
2034
|
+
/**
|
2035
|
+
* 取消收藏
|
2036
|
+
* URL: /api/shcp-consumer/${ShcpApiSdk.getApiSuffix()}/consumer/favorite/delete
|
2037
|
+
*/
|
1781
2038
|
static delete(data) {
|
1782
2039
|
return ShcpApiSdk.request({
|
1783
2040
|
url: `/api/shcp-consumer/${ShcpApiSdk.getApiSuffix()}/consumer/favorite/delete`,
|
@@ -1881,8 +2138,10 @@ class DeviceUserApi {
|
|
1881
2138
|
}
|
1882
2139
|
}
|
1883
2140
|
|
1884
|
-
|
1885
|
-
|
2141
|
+
/**
|
2142
|
+
* 服务流程.发起
|
2143
|
+
* URL: /api/shcp-healthcare/${ShcpApiSdk.getApiSuffix()}/diseaseCare/start
|
2144
|
+
*/
|
1886
2145
|
function start$1(data) {
|
1887
2146
|
return ShcpApiSdk.request({
|
1888
2147
|
url: `/api/shcp-healthcare/${ShcpApiSdk.getApiSuffix()}/diseaseCare/start`,
|
@@ -1890,8 +2149,10 @@ function start$1(data) {
|
|
1890
2149
|
data,
|
1891
2150
|
});
|
1892
2151
|
}
|
1893
|
-
|
1894
|
-
|
2152
|
+
/**
|
2153
|
+
* 服务流程.领取
|
2154
|
+
* URL: /api/shcp-healthcare/${ShcpApiSdk.getApiSuffix()}/diseaseCare/claim
|
2155
|
+
*/
|
1895
2156
|
function claim$1(data) {
|
1896
2157
|
return ShcpApiSdk.request({
|
1897
2158
|
url: `/api/shcp-healthcare/${ShcpApiSdk.getApiSuffix()}/diseaseCare/claim`,
|
@@ -1899,8 +2160,10 @@ function claim$1(data) {
|
|
1899
2160
|
data,
|
1900
2161
|
});
|
1901
2162
|
}
|
1902
|
-
|
1903
|
-
|
2163
|
+
/**
|
2164
|
+
* 服务流程.终止
|
2165
|
+
* URL: /api/shcp-healthcare/${ShcpApiSdk.getApiSuffix()}/diseaseCare/terminate
|
2166
|
+
*/
|
1904
2167
|
function terminate$1(data) {
|
1905
2168
|
return ShcpApiSdk.request({
|
1906
2169
|
url: `/api/shcp-healthcare/${ShcpApiSdk.getApiSuffix()}/diseaseCare/terminate`,
|
@@ -1908,8 +2171,10 @@ function terminate$1(data) {
|
|
1908
2171
|
data,
|
1909
2172
|
});
|
1910
2173
|
}
|
1911
|
-
|
1912
|
-
|
2174
|
+
/**
|
2175
|
+
* 服务流程.标记用户
|
2176
|
+
* URL: /api/shcp-healthcare/${ShcpApiSdk.getApiSuffix()}/diseaseCare/consumerMark
|
2177
|
+
*/
|
1913
2178
|
function consumerMark$1(data) {
|
1914
2179
|
return ShcpApiSdk.request({
|
1915
2180
|
url: `/api/shcp-healthcare/${ShcpApiSdk.getApiSuffix()}/diseaseCare/consumerMark`,
|
@@ -1917,8 +2182,10 @@ function consumerMark$1(data) {
|
|
1917
2182
|
data,
|
1918
2183
|
});
|
1919
2184
|
}
|
1920
|
-
|
1921
|
-
|
2185
|
+
/**
|
2186
|
+
* 服务流程.取消标记用户
|
2187
|
+
* URL: /api/shcp-healthcare/${ShcpApiSdk.getApiSuffix()}/diseaseCare/consumerUnmark
|
2188
|
+
*/
|
1922
2189
|
function deleteConsumerMark(data) {
|
1923
2190
|
return ShcpApiSdk.request({
|
1924
2191
|
url: `/api/shcp-healthcare/${ShcpApiSdk.getApiSuffix()}/diseaseCare/consumerUnmark`,
|
@@ -1926,8 +2193,10 @@ function deleteConsumerMark(data) {
|
|
1926
2193
|
data,
|
1927
2194
|
});
|
1928
2195
|
}
|
1929
|
-
|
1930
|
-
|
2196
|
+
/**
|
2197
|
+
* 服务流程.联系用户
|
2198
|
+
* URL: /api/shcp-healthcare/${ShcpApiSdk.getApiSuffix()}/diseaseCare/consumerContact
|
2199
|
+
*/
|
1931
2200
|
function consumerContact$1(data) {
|
1932
2201
|
return ShcpApiSdk.request({
|
1933
2202
|
url: `/api/shcp-healthcare/${ShcpApiSdk.getApiSuffix()}/diseaseCare/consumerContact`,
|
@@ -1935,8 +2204,10 @@ function consumerContact$1(data) {
|
|
1935
2204
|
data,
|
1936
2205
|
});
|
1937
2206
|
}
|
1938
|
-
|
1939
|
-
|
2207
|
+
/**
|
2208
|
+
* 流程任务.获取
|
2209
|
+
* URL: /api/shcp-healthcare/${ShcpApiSdk.getApiSuffix()}/diseaseCare/task/fetch
|
2210
|
+
*/
|
1940
2211
|
function taskFetch$1(data) {
|
1941
2212
|
return ShcpApiSdk.request({
|
1942
2213
|
url: `/api/shcp-healthcare/${ShcpApiSdk.getApiSuffix()}/diseaseCare/task/fetch`,
|
@@ -1944,8 +2215,10 @@ function taskFetch$1(data) {
|
|
1944
2215
|
data,
|
1945
2216
|
});
|
1946
2217
|
}
|
1947
|
-
|
1948
|
-
|
2218
|
+
/**
|
2219
|
+
* 流程任务.提交
|
2220
|
+
* URL: /api/shcp-healthcare/${ShcpApiSdk.getApiSuffix()}/diseaseCare/task/submit
|
2221
|
+
*/
|
1949
2222
|
function taskSubmit$1(data) {
|
1950
2223
|
return ShcpApiSdk.request({
|
1951
2224
|
url: `/api/shcp-healthcare/${ShcpApiSdk.getApiSuffix()}/diseaseCare/task/submit`,
|
@@ -1953,8 +2226,10 @@ function taskSubmit$1(data) {
|
|
1953
2226
|
data,
|
1954
2227
|
});
|
1955
2228
|
}
|
1956
|
-
|
1957
|
-
|
2229
|
+
/**
|
2230
|
+
* 流程任务.取消
|
2231
|
+
* URL: /api/shcp-healthcare/${ShcpApiSdk.getApiSuffix()}/diseaseCare/task/cancel
|
2232
|
+
*/
|
1958
2233
|
function taskCancel$1(data) {
|
1959
2234
|
return ShcpApiSdk.request({
|
1960
2235
|
url: `/api/shcp-healthcare/${ShcpApiSdk.getApiSuffix()}/diseaseCare/task/cancel`,
|
@@ -1962,8 +2237,10 @@ function taskCancel$1(data) {
|
|
1962
2237
|
data,
|
1963
2238
|
});
|
1964
2239
|
}
|
1965
|
-
|
1966
|
-
|
2240
|
+
/**
|
2241
|
+
* 流程任务.保存
|
2242
|
+
* URL: /api/shcp-healthcare/${ShcpApiSdk.getApiSuffix()}/diseaseCare/task/save
|
2243
|
+
*/
|
1967
2244
|
function taskSave$1(data) {
|
1968
2245
|
return ShcpApiSdk.request({
|
1969
2246
|
url: `/api/shcp-healthcare/${ShcpApiSdk.getApiSuffix()}/diseaseCare/task/save`,
|
@@ -2018,8 +2295,10 @@ const diseaseExceptionOpApi = {
|
|
2018
2295
|
};
|
2019
2296
|
|
2020
2297
|
class HealthCommonApi {
|
2021
|
-
|
2022
|
-
|
2298
|
+
/**
|
2299
|
+
* 服务流程.分页查询
|
2300
|
+
* URL: /api/shcp-healthcare/${ShcpApiSdk.getApiSuffix()}/serviceFlow/page
|
2301
|
+
*/
|
2023
2302
|
static pageServiceFlow(data) {
|
2024
2303
|
return ShcpApiSdk.request({
|
2025
2304
|
url: `/api/shcp-healthcare/${ShcpApiSdk.getApiSuffix()}/serviceFlow/page`,
|
@@ -2031,8 +2310,10 @@ class HealthCommonApi {
|
|
2031
2310
|
},
|
2032
2311
|
});
|
2033
2312
|
}
|
2034
|
-
|
2035
|
-
|
2313
|
+
/**
|
2314
|
+
* 服务流程.统计, 用户所参与流程统计
|
2315
|
+
* URL: /api/shcp-healthcare/${ShcpApiSdk.getApiSuffix()}/serviceFlow/statistics
|
2316
|
+
*/
|
2036
2317
|
static statsServiceFlow(data) {
|
2037
2318
|
return ShcpApiSdk.request({
|
2038
2319
|
url: `/api/shcp-healthcare/${ShcpApiSdk.getApiSuffix()}/serviceFlow/statistics`,
|
@@ -2040,8 +2321,10 @@ class HealthCommonApi {
|
|
2040
2321
|
data,
|
2041
2322
|
});
|
2042
2323
|
}
|
2043
|
-
|
2044
|
-
|
2324
|
+
/**
|
2325
|
+
* 服务任务的权益.列表查询, 列表查询
|
2326
|
+
* URL: /api/shcp-healthcare/${ShcpApiSdk.getApiSuffix()}/serviceTask/right/list
|
2327
|
+
*/
|
2045
2328
|
static listServiceTaskRight(data) {
|
2046
2329
|
return ShcpApiSdk.request({
|
2047
2330
|
url: `/api/shcp-healthcare/${ShcpApiSdk.getApiSuffix()}/serviceTask/right/list`,
|
@@ -2049,8 +2332,10 @@ class HealthCommonApi {
|
|
2049
2332
|
data,
|
2050
2333
|
});
|
2051
2334
|
}
|
2052
|
-
|
2053
|
-
|
2335
|
+
/**
|
2336
|
+
* 服务任务.分页查询
|
2337
|
+
* URL: /api/shcp-healthcare/${ShcpApiSdk.getApiSuffix()}/serviceTask/page
|
2338
|
+
*/
|
2054
2339
|
static pageServiceTask(data) {
|
2055
2340
|
return ShcpApiSdk.request({
|
2056
2341
|
url: `/api/shcp-healthcare/${ShcpApiSdk.getApiSuffix()}/serviceTask/page`,
|
@@ -2062,8 +2347,10 @@ class HealthCommonApi {
|
|
2062
2347
|
},
|
2063
2348
|
});
|
2064
2349
|
}
|
2065
|
-
|
2066
|
-
|
2350
|
+
/**
|
2351
|
+
* 服务任务.单个查询(按ID)
|
2352
|
+
* URL: /api/shcp-healthcare/${ShcpApiSdk.getApiSuffix()}/serviceTask/detail
|
2353
|
+
*/
|
2067
2354
|
static detailServiceTask(id) {
|
2068
2355
|
return ShcpApiSdk.request({
|
2069
2356
|
url: `/api/shcp-healthcare/${ShcpApiSdk.getApiSuffix()}/serviceTask/detail`,
|
@@ -2071,8 +2358,10 @@ class HealthCommonApi {
|
|
2071
2358
|
params: { id },
|
2072
2359
|
});
|
2073
2360
|
}
|
2074
|
-
|
2075
|
-
|
2361
|
+
/**
|
2362
|
+
* 服务任务.单个查询(按条件)
|
2363
|
+
* URL: /api/shcp-healthcare/${ShcpApiSdk.getApiSuffix()}/serviceTask/get
|
2364
|
+
*/
|
2076
2365
|
static getServiceTask(data) {
|
2077
2366
|
return ShcpApiSdk.request({
|
2078
2367
|
url: `/api/shcp-healthcare/${ShcpApiSdk.getApiSuffix()}/serviceTask/get`,
|
@@ -2080,8 +2369,10 @@ class HealthCommonApi {
|
|
2080
2369
|
data,
|
2081
2370
|
});
|
2082
2371
|
}
|
2083
|
-
|
2084
|
-
|
2372
|
+
/**
|
2373
|
+
* 服务任务.统计, 用户所参与任务统计
|
2374
|
+
* URL: /api/shcp-healthcare/${ShcpApiSdk.getApiSuffix()}/serviceTask/statistics
|
2375
|
+
*/
|
2085
2376
|
static statsServiceTask(data) {
|
2086
2377
|
return ShcpApiSdk.request({
|
2087
2378
|
url: `/api/shcp-healthcare/${ShcpApiSdk.getApiSuffix()}/serviceTask/statistics`,
|
@@ -2089,8 +2380,10 @@ class HealthCommonApi {
|
|
2089
2380
|
data,
|
2090
2381
|
});
|
2091
2382
|
}
|
2092
|
-
|
2093
|
-
|
2383
|
+
/**
|
2384
|
+
* 健康指标趋势.列表查询
|
2385
|
+
* URL: /api/shcp-healthcare/${ShcpApiSdk.getApiSuffix()}/healthMetricTrend/list
|
2386
|
+
*/
|
2094
2387
|
static listMetricTrend(data) {
|
2095
2388
|
return ShcpApiSdk.request({
|
2096
2389
|
url: `/api/shcp-healthcare/${ShcpApiSdk.getApiSuffix()}/healthMetricTrend/list`,
|
@@ -2098,8 +2391,10 @@ class HealthCommonApi {
|
|
2098
2391
|
data,
|
2099
2392
|
});
|
2100
2393
|
}
|
2101
|
-
|
2102
|
-
|
2394
|
+
/**
|
2395
|
+
* 指标异常记录.分页查询, 任务维度
|
2396
|
+
* URL: /api/shcp-healthcare/${ShcpApiSdk.getApiSuffix()}/metricException/page
|
2397
|
+
*/
|
2103
2398
|
static metricExceptionPage(data) {
|
2104
2399
|
return ShcpApiSdk.request({
|
2105
2400
|
url: `/api/shcp-healthcare/${ShcpApiSdk.getApiSuffix()}/metricException/page`,
|
@@ -2111,8 +2406,10 @@ class HealthCommonApi {
|
|
2111
2406
|
},
|
2112
2407
|
});
|
2113
2408
|
}
|
2114
|
-
|
2115
|
-
|
2409
|
+
/**
|
2410
|
+
* 指标异常记录.用户分页查询, 用户维度
|
2411
|
+
* URL: /api/shcp-healthcare/${ShcpApiSdk.getApiSuffix()}/metricException/user/page
|
2412
|
+
*/
|
2116
2413
|
static metricExceptionUserPage(data) {
|
2117
2414
|
return ShcpApiSdk.request({
|
2118
2415
|
url: `/api/shcp-healthcare/${ShcpApiSdk.getApiSuffix()}/metricException/user/page`,
|
@@ -2127,8 +2424,10 @@ class HealthCommonApi {
|
|
2127
2424
|
}
|
2128
2425
|
|
2129
2426
|
class HealthMetricApi {
|
2130
|
-
|
2131
|
-
|
2427
|
+
/**
|
2428
|
+
* 获取健康指标
|
2429
|
+
* URL: /api/shcp-healthcare/${ShcpApiSdk.getApiSuffix()}/healthMetric/get
|
2430
|
+
*/
|
2132
2431
|
static getMetric(data) {
|
2133
2432
|
return ShcpApiSdk.request({
|
2134
2433
|
url: `/api/shcp-healthcare/${ShcpApiSdk.getApiSuffix()}/healthMetric/get`,
|
@@ -2136,8 +2435,10 @@ class HealthMetricApi {
|
|
2136
2435
|
data,
|
2137
2436
|
});
|
2138
2437
|
}
|
2139
|
-
|
2140
|
-
|
2438
|
+
/**
|
2439
|
+
* 获取健康指标列表
|
2440
|
+
* URL: /api/shcp-healthcare/${ShcpApiSdk.getApiSuffix()}/healthMetric/list
|
2441
|
+
*/
|
2141
2442
|
static listMetric(data) {
|
2142
2443
|
return ShcpApiSdk.request({
|
2143
2444
|
url: `/api/shcp-healthcare/${ShcpApiSdk.getApiSuffix()}/healthMetric/list`,
|
@@ -2145,8 +2446,10 @@ class HealthMetricApi {
|
|
2145
2446
|
data,
|
2146
2447
|
});
|
2147
2448
|
}
|
2148
|
-
|
2149
|
-
|
2449
|
+
/**
|
2450
|
+
* 健康指标分页查询
|
2451
|
+
* URL: /api/shcp-healthcare/${ShcpApiSdk.getApiSuffix()}/healthMetric/page
|
2452
|
+
*/
|
2150
2453
|
static pageMetric(data) {
|
2151
2454
|
return ShcpApiSdk.request({
|
2152
2455
|
url: `/api/shcp-healthcare/${ShcpApiSdk.getApiSuffix()}/healthMetric/page`,
|
@@ -2158,8 +2461,10 @@ class HealthMetricApi {
|
|
2158
2461
|
},
|
2159
2462
|
});
|
2160
2463
|
}
|
2161
|
-
|
2162
|
-
|
2464
|
+
/**
|
2465
|
+
* 健康指标趋势列表
|
2466
|
+
* URL: /api/shcp-healthcare/${ShcpApiSdk.getApiSuffix()}/healthMetricTrend/list
|
2467
|
+
*/
|
2163
2468
|
static listTrend(data) {
|
2164
2469
|
return ShcpApiSdk.request({
|
2165
2470
|
url: `/api/shcp-healthcare/${ShcpApiSdk.getApiSuffix()}/healthMetricTrend/list`,
|
@@ -2167,8 +2472,10 @@ class HealthMetricApi {
|
|
2167
2472
|
data,
|
2168
2473
|
});
|
2169
2474
|
}
|
2170
|
-
|
2171
|
-
|
2475
|
+
/**
|
2476
|
+
* 健康指标日志列表
|
2477
|
+
* URL: /api/shcp-healthcare/${ShcpApiSdk.getApiSuffix()}/healthMetricLog/list
|
2478
|
+
*/
|
2172
2479
|
static listLog(data) {
|
2173
2480
|
return ShcpApiSdk.request({
|
2174
2481
|
url: `/api/shcp-healthcare/${ShcpApiSdk.getApiSuffix()}/healthMetricLog/list`,
|
@@ -2179,8 +2486,10 @@ class HealthMetricApi {
|
|
2179
2486
|
}
|
2180
2487
|
|
2181
2488
|
class HealthProfileApi {
|
2182
|
-
|
2183
|
-
|
2489
|
+
/**
|
2490
|
+
* 获取日记任务
|
2491
|
+
* URL: /api/shcp-healthcare/${ShcpApiSdk.getApiSuffix()}/healthProfile/diaryTask/fetch
|
2492
|
+
*/
|
2184
2493
|
static fetchDiaryTask(data) {
|
2185
2494
|
return ShcpApiSdk.request({
|
2186
2495
|
url: `/api/shcp-healthcare/${ShcpApiSdk.getApiSuffix()}/healthProfile/diaryTask/fetch`,
|
@@ -2188,8 +2497,10 @@ class HealthProfileApi {
|
|
2188
2497
|
data,
|
2189
2498
|
});
|
2190
2499
|
}
|
2191
|
-
|
2192
|
-
|
2500
|
+
/**
|
2501
|
+
* 提交日记任务
|
2502
|
+
* URL: /api/shcp-healthcare/${ShcpApiSdk.getApiSuffix()}/healthProfile/diaryTask/submit
|
2503
|
+
*/
|
2193
2504
|
static submitDiaryTask(data) {
|
2194
2505
|
return ShcpApiSdk.request({
|
2195
2506
|
url: `/api/shcp-healthcare/${ShcpApiSdk.getApiSuffix()}/healthProfile/diaryTask/submit`,
|
@@ -2197,8 +2508,10 @@ class HealthProfileApi {
|
|
2197
2508
|
data,
|
2198
2509
|
});
|
2199
2510
|
}
|
2200
|
-
|
2201
|
-
|
2511
|
+
/**
|
2512
|
+
* 提交报告任务
|
2513
|
+
* URL: /api/shcp-healthcare/${ShcpApiSdk.getApiSuffix()}/healthProfile/reportTask/submit
|
2514
|
+
*/
|
2202
2515
|
static submitReportTask(data) {
|
2203
2516
|
return ShcpApiSdk.request({
|
2204
2517
|
url: `/api/shcp-healthcare/${ShcpApiSdk.getApiSuffix()}/healthProfile/reportTask/submit`,
|
@@ -2206,8 +2519,10 @@ class HealthProfileApi {
|
|
2206
2519
|
data,
|
2207
2520
|
});
|
2208
2521
|
}
|
2209
|
-
|
2210
|
-
|
2522
|
+
/**
|
2523
|
+
* 获取报告任务
|
2524
|
+
* URL: /api/shcp-healthcare/${ShcpApiSdk.getApiSuffix()}/healthProfile/reportTask/fetch
|
2525
|
+
*/
|
2211
2526
|
static fetchReportTask(data) {
|
2212
2527
|
return ShcpApiSdk.request({
|
2213
2528
|
url: `/api/shcp-healthcare/${ShcpApiSdk.getApiSuffix()}/healthProfile/reportTask/fetch`,
|
@@ -2218,8 +2533,10 @@ class HealthProfileApi {
|
|
2218
2533
|
}
|
2219
2534
|
|
2220
2535
|
class HealthSelfAssessApi {
|
2221
|
-
|
2222
|
-
|
2536
|
+
/**
|
2537
|
+
* 启动健康自评
|
2538
|
+
* URL: /api/shcp-healthcare/${ShcpApiSdk.getApiSuffix()}/healthSelfAssess/start
|
2539
|
+
*/
|
2223
2540
|
static start(data) {
|
2224
2541
|
return ShcpApiSdk.request({
|
2225
2542
|
url: `/api/shcp-healthcare/${ShcpApiSdk.getApiSuffix()}/healthSelfAssess/start`,
|
@@ -2227,8 +2544,10 @@ class HealthSelfAssessApi {
|
|
2227
2544
|
data,
|
2228
2545
|
});
|
2229
2546
|
}
|
2230
|
-
|
2231
|
-
|
2547
|
+
/**
|
2548
|
+
* 提交评估任务
|
2549
|
+
* URL: /api/shcp-healthcare/${ShcpApiSdk.getApiSuffix()}/healthSelfAssess/task/submit
|
2550
|
+
*/
|
2232
2551
|
static submitTask(data) {
|
2233
2552
|
return ShcpApiSdk.request({
|
2234
2553
|
url: `/api/shcp-healthcare/${ShcpApiSdk.getApiSuffix()}/healthSelfAssess/task/submit`,
|
@@ -2236,8 +2555,10 @@ class HealthSelfAssessApi {
|
|
2236
2555
|
data,
|
2237
2556
|
});
|
2238
2557
|
}
|
2239
|
-
|
2240
|
-
|
2558
|
+
/**
|
2559
|
+
* 获取评估任务
|
2560
|
+
* URL: /api/shcp-healthcare/${ShcpApiSdk.getApiSuffix()}/healthSelfAssess/task/fetch
|
2561
|
+
*/
|
2241
2562
|
static fetchTask(data) {
|
2242
2563
|
return ShcpApiSdk.request({
|
2243
2564
|
url: `/api/shcp-healthcare/${ShcpApiSdk.getApiSuffix()}/healthSelfAssess/task/fetch`,
|
@@ -2247,8 +2568,10 @@ class HealthSelfAssessApi {
|
|
2247
2568
|
}
|
2248
2569
|
}
|
2249
2570
|
|
2250
|
-
|
2251
|
-
|
2571
|
+
/**
|
2572
|
+
* 服务流程.发起
|
2573
|
+
* URL: /api/shcp-healthcare/${ShcpApiSdk.getApiSuffix()}/healthStudy/start
|
2574
|
+
*/
|
2252
2575
|
function start(data) {
|
2253
2576
|
return ShcpApiSdk.request({
|
2254
2577
|
url: `/api/shcp-healthcare/${ShcpApiSdk.getApiSuffix()}/healthStudy/start`,
|
@@ -2256,8 +2579,10 @@ function start(data) {
|
|
2256
2579
|
data,
|
2257
2580
|
});
|
2258
2581
|
}
|
2259
|
-
|
2260
|
-
|
2582
|
+
/**
|
2583
|
+
* 服务流程.领取
|
2584
|
+
* URL: /api/shcp-healthcare/${ShcpApiSdk.getApiSuffix()}/healthStudy/claim
|
2585
|
+
*/
|
2261
2586
|
function claim(data) {
|
2262
2587
|
return ShcpApiSdk.request({
|
2263
2588
|
url: `/api/shcp-healthcare/${ShcpApiSdk.getApiSuffix()}/healthStudy/claim`,
|
@@ -2265,8 +2590,10 @@ function claim(data) {
|
|
2265
2590
|
data,
|
2266
2591
|
});
|
2267
2592
|
}
|
2268
|
-
|
2269
|
-
|
2593
|
+
/**
|
2594
|
+
* 服务流程.终止
|
2595
|
+
* URL: /api/shcp-healthcare/${ShcpApiSdk.getApiSuffix()}/healthStudy/terminate
|
2596
|
+
*/
|
2270
2597
|
function terminate(data) {
|
2271
2598
|
return ShcpApiSdk.request({
|
2272
2599
|
url: `/api/shcp-healthcare/${ShcpApiSdk.getApiSuffix()}/healthStudy/terminate`,
|
@@ -2274,8 +2601,10 @@ function terminate(data) {
|
|
2274
2601
|
data,
|
2275
2602
|
});
|
2276
2603
|
}
|
2277
|
-
|
2278
|
-
|
2604
|
+
/**
|
2605
|
+
* 服务流程.标记用户
|
2606
|
+
* URL: /api/shcp-healthcare/${ShcpApiSdk.getApiSuffix()}/healthStudy/consumerMark
|
2607
|
+
*/
|
2279
2608
|
function consumerMark(data) {
|
2280
2609
|
return ShcpApiSdk.request({
|
2281
2610
|
url: `/api/shcp-healthcare/${ShcpApiSdk.getApiSuffix()}/healthStudy/consumerMark`,
|
@@ -2283,8 +2612,10 @@ function consumerMark(data) {
|
|
2283
2612
|
data,
|
2284
2613
|
});
|
2285
2614
|
}
|
2286
|
-
|
2287
|
-
|
2615
|
+
/**
|
2616
|
+
* 服务流程.联系用户
|
2617
|
+
* URL: /api/shcp-healthcare/${ShcpApiSdk.getApiSuffix()}/healthStudy/consumerContact
|
2618
|
+
*/
|
2288
2619
|
function consumerContact(data) {
|
2289
2620
|
return ShcpApiSdk.request({
|
2290
2621
|
url: `/api/shcp-healthcare/${ShcpApiSdk.getApiSuffix()}/healthStudy/consumerContact`,
|
@@ -2292,8 +2623,10 @@ function consumerContact(data) {
|
|
2292
2623
|
data,
|
2293
2624
|
});
|
2294
2625
|
}
|
2295
|
-
|
2296
|
-
|
2626
|
+
/**
|
2627
|
+
* 流程任务.获取
|
2628
|
+
* URL: /api/shcp-healthcare/${ShcpApiSdk.getApiSuffix()}/healthStudy/task/fetch
|
2629
|
+
*/
|
2297
2630
|
function taskFetch(data) {
|
2298
2631
|
return ShcpApiSdk.request({
|
2299
2632
|
url: `/api/shcp-healthcare/${ShcpApiSdk.getApiSuffix()}/healthStudy/task/fetch`,
|
@@ -2301,8 +2634,10 @@ function taskFetch(data) {
|
|
2301
2634
|
data,
|
2302
2635
|
});
|
2303
2636
|
}
|
2304
|
-
|
2305
|
-
|
2637
|
+
/**
|
2638
|
+
* 流程任务.提交
|
2639
|
+
* URL: /api/shcp-healthcare/${ShcpApiSdk.getApiSuffix()}/healthStudy/task/submit
|
2640
|
+
*/
|
2306
2641
|
function taskSubmit(data) {
|
2307
2642
|
return ShcpApiSdk.request({
|
2308
2643
|
url: `/api/shcp-healthcare/${ShcpApiSdk.getApiSuffix()}/healthStudy/task/submit`,
|
@@ -2310,8 +2645,10 @@ function taskSubmit(data) {
|
|
2310
2645
|
data,
|
2311
2646
|
});
|
2312
2647
|
}
|
2313
|
-
|
2314
|
-
|
2648
|
+
/**
|
2649
|
+
* 流程任务.取消
|
2650
|
+
* URL: /api/shcp-healthcare/${ShcpApiSdk.getApiSuffix()}/healthStudy/task/cancel
|
2651
|
+
*/
|
2315
2652
|
function taskCancel(data) {
|
2316
2653
|
return ShcpApiSdk.request({
|
2317
2654
|
url: `/api/shcp-healthcare/${ShcpApiSdk.getApiSuffix()}/healthStudy/task/cancel`,
|
@@ -2319,8 +2656,10 @@ function taskCancel(data) {
|
|
2319
2656
|
data,
|
2320
2657
|
});
|
2321
2658
|
}
|
2322
|
-
|
2323
|
-
|
2659
|
+
/**
|
2660
|
+
* 流程任务.保存
|
2661
|
+
* URL: /api/shcp-healthcare/${ShcpApiSdk.getApiSuffix()}/healthStudy/task/save
|
2662
|
+
*/
|
2324
2663
|
function taskSave(data) {
|
2325
2664
|
return ShcpApiSdk.request({
|
2326
2665
|
url: `/api/shcp-healthcare/${ShcpApiSdk.getApiSuffix()}/healthStudy/task/save`,
|
@@ -2400,8 +2739,10 @@ class HealthToolApi {
|
|
2400
2739
|
}
|
2401
2740
|
|
2402
2741
|
class HelpCenterApi {
|
2403
|
-
|
2404
|
-
|
2742
|
+
/**
|
2743
|
+
* 获取帮助中心配置
|
2744
|
+
* URL: /api/blade-system/${ShcpApiSdk.getApiSuffix()}/helpCenter/get
|
2745
|
+
*/
|
2405
2746
|
static getConfig(clientType) {
|
2406
2747
|
const url = `/api/blade-system/${ShcpApiSdk.getApiSuffix()}/helpCenter/get`;
|
2407
2748
|
return ShcpApiSdk.request({
|
@@ -2415,8 +2756,10 @@ class HelpCenterApi {
|
|
2415
2756
|
}
|
2416
2757
|
|
2417
2758
|
class ImUserApi {
|
2418
|
-
|
2419
|
-
|
2759
|
+
/**
|
2760
|
+
* 用户登录
|
2761
|
+
* URL: /api/shcp-message/${ShcpApiSdk.getApiSuffix()}/message/im/login
|
2762
|
+
*/
|
2420
2763
|
static login(data) {
|
2421
2764
|
return ShcpApiSdk.request({
|
2422
2765
|
url: `/api/shcp-message/${ShcpApiSdk.getApiSuffix()}/message/im/login`,
|
@@ -2424,8 +2767,10 @@ class ImUserApi {
|
|
2424
2767
|
data,
|
2425
2768
|
});
|
2426
2769
|
}
|
2427
|
-
|
2428
|
-
|
2770
|
+
/**
|
2771
|
+
* 获取对话用户信息
|
2772
|
+
* URL: /api/shcp-message/${ShcpApiSdk.getApiSuffix()}/message/im/getUser
|
2773
|
+
*/
|
2429
2774
|
static getUser(data) {
|
2430
2775
|
return ShcpApiSdk.request({
|
2431
2776
|
url: `/api/shcp-message/${ShcpApiSdk.getApiSuffix()}/message/im/getUser`,
|
@@ -2433,8 +2778,10 @@ class ImUserApi {
|
|
2433
2778
|
data,
|
2434
2779
|
});
|
2435
2780
|
}
|
2436
|
-
|
2437
|
-
|
2781
|
+
/**
|
2782
|
+
* 获取对话用户信息
|
2783
|
+
* URL: /api/shcp-message/${ShcpApiSdk.getApiSuffix()}/message/im/getUserList
|
2784
|
+
*/
|
2438
2785
|
static getUserList(data) {
|
2439
2786
|
return ShcpApiSdk.request({
|
2440
2787
|
url: `/api/shcp-message/${ShcpApiSdk.getApiSuffix()}/message/im/getUserList`,
|
@@ -2445,7 +2792,9 @@ class ImUserApi {
|
|
2445
2792
|
}
|
2446
2793
|
|
2447
2794
|
class KmArticleApi {
|
2448
|
-
|
2795
|
+
/**
|
2796
|
+
* 查询文章分类树
|
2797
|
+
*/
|
2449
2798
|
static getCategoryTree(data) {
|
2450
2799
|
return ShcpApiSdk.request({
|
2451
2800
|
url: '/api/shcp-km/article/category/tree',
|
@@ -2453,7 +2802,9 @@ class KmArticleApi {
|
|
2453
2802
|
data,
|
2454
2803
|
});
|
2455
2804
|
}
|
2456
|
-
|
2805
|
+
/**
|
2806
|
+
* 查询文章分页列表
|
2807
|
+
*/
|
2457
2808
|
static getPage(data) {
|
2458
2809
|
return ShcpApiSdk.request({
|
2459
2810
|
url: '/api/shcp-km/article/page',
|
@@ -2465,7 +2816,9 @@ class KmArticleApi {
|
|
2465
2816
|
},
|
2466
2817
|
});
|
2467
2818
|
}
|
2468
|
-
|
2819
|
+
/**
|
2820
|
+
* 文章内容查询
|
2821
|
+
*/
|
2469
2822
|
static getContent(id) {
|
2470
2823
|
return ShcpApiSdk.request({
|
2471
2824
|
url: '/api/shcp-km/article/content/query',
|
@@ -2473,7 +2826,9 @@ class KmArticleApi {
|
|
2473
2826
|
params: { id },
|
2474
2827
|
});
|
2475
2828
|
}
|
2476
|
-
|
2829
|
+
/**
|
2830
|
+
* 查询标签分类树
|
2831
|
+
*/
|
2477
2832
|
static getTagCategoryTree(data) {
|
2478
2833
|
return ShcpApiSdk.request({
|
2479
2834
|
url: '/api/shcp-km/article/tag/category/tree',
|
@@ -2481,7 +2836,9 @@ class KmArticleApi {
|
|
2481
2836
|
data,
|
2482
2837
|
});
|
2483
2838
|
}
|
2484
|
-
|
2839
|
+
/**
|
2840
|
+
* 查询标签分页列表
|
2841
|
+
*/
|
2485
2842
|
static getTagPage(data) {
|
2486
2843
|
return ShcpApiSdk.request({
|
2487
2844
|
url: '/api/shcp-km/article/tag/page',
|
@@ -2496,8 +2853,10 @@ class KmArticleApi {
|
|
2496
2853
|
}
|
2497
2854
|
|
2498
2855
|
class KmFormApi {
|
2499
|
-
|
2500
|
-
|
2856
|
+
/**
|
2857
|
+
* 获取表单内容
|
2858
|
+
* URL: /api/shcp-km/${ShcpApiSdk.getApiSuffix()}/form/content/query
|
2859
|
+
*/
|
2501
2860
|
static getContent(formId) {
|
2502
2861
|
return ShcpApiSdk.request({
|
2503
2862
|
url: `/api/shcp-km/${ShcpApiSdk.getApiSuffix()}/form/content/query`,
|
@@ -2520,8 +2879,10 @@ class KmFormApi {
|
|
2520
2879
|
}
|
2521
2880
|
|
2522
2881
|
class KmFormRuleRelationApi {
|
2523
|
-
|
2524
|
-
|
2882
|
+
/**
|
2883
|
+
* 单个查询
|
2884
|
+
* URL: /api/shcp-km/${ShcpApiSdk.getApiSuffix()}/form/rule/get
|
2885
|
+
*/
|
2525
2886
|
static get(data) {
|
2526
2887
|
return ShcpApiSdk.request({
|
2527
2888
|
url: `/api/shcp-km/${ShcpApiSdk.getApiSuffix()}/form/rule/get`,
|
@@ -2529,8 +2890,10 @@ class KmFormRuleRelationApi {
|
|
2529
2890
|
data,
|
2530
2891
|
});
|
2531
2892
|
}
|
2532
|
-
|
2533
|
-
|
2893
|
+
/**
|
2894
|
+
* 列表查询
|
2895
|
+
* URL: /api/shcp-km/${ShcpApiSdk.getApiSuffix()}/form/rule/list
|
2896
|
+
*/
|
2534
2897
|
static getList(data) {
|
2535
2898
|
return ShcpApiSdk.request({
|
2536
2899
|
url: `/api/shcp-km/${ShcpApiSdk.getApiSuffix()}/form/rule/list`,
|
@@ -2541,8 +2904,10 @@ class KmFormRuleRelationApi {
|
|
2541
2904
|
}
|
2542
2905
|
|
2543
2906
|
class LoginApi {
|
2544
|
-
|
2545
|
-
|
2907
|
+
/**
|
2908
|
+
* 新增
|
2909
|
+
* URL: /api/blade-system/${ShcpApiSdk.getApiSuffix()}/potentialCustomer/create
|
2910
|
+
*/
|
2546
2911
|
static createApplyAccount(data) {
|
2547
2912
|
return ShcpApiSdk.request({
|
2548
2913
|
url: `/api/blade-system/${ShcpApiSdk.getApiSuffix()}/potentialCustomer/create`,
|
@@ -2550,8 +2915,10 @@ class LoginApi {
|
|
2550
2915
|
data,
|
2551
2916
|
});
|
2552
2917
|
}
|
2553
|
-
|
2554
|
-
|
2918
|
+
/**
|
2919
|
+
* 获取申请结果
|
2920
|
+
* URL: /api/blade-system/${ShcpApiSdk.getApiSuffix()}/salesConfig/get
|
2921
|
+
*/
|
2555
2922
|
static getApplyResult() {
|
2556
2923
|
return ShcpApiSdk.request({
|
2557
2924
|
url: `/api/blade-system/${ShcpApiSdk.getApiSuffix()}/salesConfig/get`,
|
@@ -2559,8 +2926,10 @@ class LoginApi {
|
|
2559
2926
|
data: {},
|
2560
2927
|
});
|
2561
2928
|
}
|
2562
|
-
|
2563
|
-
|
2929
|
+
/**
|
2930
|
+
* 刷新token
|
2931
|
+
* URL: /api/blade-auth/oauth/token
|
2932
|
+
*/
|
2564
2933
|
static refreshToken(data) {
|
2565
2934
|
return ShcpApiSdk.request({
|
2566
2935
|
url: '/api/blade-auth/oauth/token',
|
@@ -2575,8 +2944,10 @@ class LoginApi {
|
|
2575
2944
|
},
|
2576
2945
|
});
|
2577
2946
|
}
|
2578
|
-
|
2579
|
-
|
2947
|
+
/**
|
2948
|
+
* 用户登录
|
2949
|
+
* URL: /api/blade-auth/oauth/token
|
2950
|
+
*/
|
2580
2951
|
static toLogin(data) {
|
2581
2952
|
return ShcpApiSdk.request({
|
2582
2953
|
url: `/api/blade-auth/oauth/token`,
|
@@ -2597,8 +2968,10 @@ class LoginApi {
|
|
2597
2968
|
},
|
2598
2969
|
});
|
2599
2970
|
}
|
2600
|
-
|
2601
|
-
|
2971
|
+
/**
|
2972
|
+
* 应用客户端登录
|
2973
|
+
* URL: /api/blade-auth/appClient/login
|
2974
|
+
*/
|
2602
2975
|
static appClientLogin(data) {
|
2603
2976
|
return ShcpApiSdk.request({
|
2604
2977
|
url: '/api/blade-auth/appClient/login',
|
@@ -2606,8 +2979,10 @@ class LoginApi {
|
|
2606
2979
|
data,
|
2607
2980
|
});
|
2608
2981
|
}
|
2609
|
-
|
2610
|
-
|
2982
|
+
/**
|
2983
|
+
* 获取租户列表
|
2984
|
+
* URL: /api/blade-system/tenant/selectTenant
|
2985
|
+
*/
|
2611
2986
|
static getTenantList() {
|
2612
2987
|
return ShcpApiSdk.request({
|
2613
2988
|
url: `/api/blade-system/tenant/selectTenant`,
|
@@ -2617,8 +2992,10 @@ class LoginApi {
|
|
2617
2992
|
},
|
2618
2993
|
});
|
2619
2994
|
}
|
2620
|
-
|
2621
|
-
|
2995
|
+
/**
|
2996
|
+
* 获取关联租户列表
|
2997
|
+
* URL: /api/blade-system/${ShcpApiSdk.getApiSuffix()}/appClient/list
|
2998
|
+
*/
|
2622
2999
|
static getRelatedTenantList(relateTenantId) {
|
2623
3000
|
return ShcpApiSdk.request({
|
2624
3001
|
url: `/api/blade-system/${ShcpApiSdk.getApiSuffix()}/appClient/list`,
|
@@ -2631,8 +3008,10 @@ class LoginApi {
|
|
2631
3008
|
}
|
2632
3009
|
|
2633
3010
|
class MarketingApi {
|
2634
|
-
|
2635
|
-
|
3011
|
+
/**
|
3012
|
+
* 保存营销内容
|
3013
|
+
* URL: /api/shcp-marketing/${ShcpApiSdk.getApiSuffix()}/marketing/content/save
|
3014
|
+
*/
|
2636
3015
|
static saveContent(data) {
|
2637
3016
|
return ShcpApiSdk.request({
|
2638
3017
|
url: `/api/shcp-marketing/${ShcpApiSdk.getApiSuffix()}/marketing/content/save`,
|
@@ -2640,8 +3019,10 @@ class MarketingApi {
|
|
2640
3019
|
data,
|
2641
3020
|
});
|
2642
3021
|
}
|
2643
|
-
|
2644
|
-
|
3022
|
+
/**
|
3023
|
+
* 创建营销活动
|
3024
|
+
* URL: /api/shcp-marketing/${ShcpApiSdk.getApiSuffix()}/marketing/create
|
3025
|
+
*/
|
2645
3026
|
static create(data) {
|
2646
3027
|
return ShcpApiSdk.request({
|
2647
3028
|
url: `/api/shcp-marketing/${ShcpApiSdk.getApiSuffix()}/marketing/create`,
|
@@ -2649,8 +3030,10 @@ class MarketingApi {
|
|
2649
3030
|
data,
|
2650
3031
|
});
|
2651
3032
|
}
|
2652
|
-
|
2653
|
-
|
3033
|
+
/**
|
3034
|
+
* 更新营销活动
|
3035
|
+
* URL: /api/shcp-marketing/${ShcpApiSdk.getApiSuffix()}/marketing/update
|
3036
|
+
*/
|
2654
3037
|
static update(data) {
|
2655
3038
|
return ShcpApiSdk.request({
|
2656
3039
|
url: `/api/shcp-marketing/${ShcpApiSdk.getApiSuffix()}/marketing/update`,
|
@@ -2658,8 +3041,10 @@ class MarketingApi {
|
|
2658
3041
|
data,
|
2659
3042
|
});
|
2660
3043
|
}
|
2661
|
-
|
2662
|
-
|
3044
|
+
/**
|
3045
|
+
* 获取营销活动分页
|
3046
|
+
* URL: /api/shcp-marketing/${ShcpApiSdk.getApiSuffix()}/marketing/page
|
3047
|
+
*/
|
2663
3048
|
static getPage(data) {
|
2664
3049
|
return ShcpApiSdk.request({
|
2665
3050
|
url: `/api/shcp-marketing/${ShcpApiSdk.getApiSuffix()}/marketing/page`,
|
@@ -2671,8 +3056,10 @@ class MarketingApi {
|
|
2671
3056
|
},
|
2672
3057
|
});
|
2673
3058
|
}
|
2674
|
-
|
2675
|
-
|
3059
|
+
/**
|
3060
|
+
* 删除营销活动
|
3061
|
+
* URL: /api/shcp-marketing/${ShcpApiSdk.getApiSuffix()}/marketing/delete
|
3062
|
+
*/
|
2676
3063
|
static delete(data) {
|
2677
3064
|
return ShcpApiSdk.request({
|
2678
3065
|
url: `/api/shcp-marketing/${ShcpApiSdk.getApiSuffix()}/marketing/delete`,
|
@@ -2680,16 +3067,20 @@ class MarketingApi {
|
|
2680
3067
|
data,
|
2681
3068
|
});
|
2682
3069
|
}
|
2683
|
-
|
2684
|
-
|
3070
|
+
/**
|
3071
|
+
* 获取营销活动详情
|
3072
|
+
* URL: /api/shcp-marketing/${ShcpApiSdk.getApiSuffix()}/marketing/detail
|
3073
|
+
*/
|
2685
3074
|
static getDetail(id) {
|
2686
3075
|
return ShcpApiSdk.request({
|
2687
3076
|
url: `/api/shcp-marketing/${ShcpApiSdk.getApiSuffix()}/marketing/detail?id=${id}`,
|
2688
3077
|
method: 'get',
|
2689
3078
|
});
|
2690
3079
|
}
|
2691
|
-
|
2692
|
-
|
3080
|
+
/**
|
3081
|
+
* 获取营销任务分页
|
3082
|
+
* URL: /api/shcp-marketing/${ShcpApiSdk.getApiSuffix()}/marketing/task/page
|
3083
|
+
*/
|
2693
3084
|
static getTaskPage(data) {
|
2694
3085
|
return ShcpApiSdk.request({
|
2695
3086
|
url: `/api/shcp-marketing/${ShcpApiSdk.getApiSuffix()}/marketing/task/page`,
|
@@ -2701,8 +3092,10 @@ class MarketingApi {
|
|
2701
3092
|
},
|
2702
3093
|
});
|
2703
3094
|
}
|
2704
|
-
|
2705
|
-
|
3095
|
+
/**
|
3096
|
+
* 获取营销任务日志分页
|
3097
|
+
* URL: /api/shcp-marketing/${ShcpApiSdk.getApiSuffix()}/marketing/task/log/page
|
3098
|
+
*/
|
2706
3099
|
static getTaskLogPage(data) {
|
2707
3100
|
return ShcpApiSdk.request({
|
2708
3101
|
url: `/api/shcp-marketing/${ShcpApiSdk.getApiSuffix()}/marketing/task/log/page`,
|
@@ -2710,8 +3103,10 @@ class MarketingApi {
|
|
2710
3103
|
data,
|
2711
3104
|
});
|
2712
3105
|
}
|
2713
|
-
|
2714
|
-
|
3106
|
+
/**
|
3107
|
+
* 创建营销任务日志
|
3108
|
+
* URL: /api/shcp-marketing/${ShcpApiSdk.getApiSuffix()}/marketing/task/log/create
|
3109
|
+
*/
|
2715
3110
|
static createTaskLogs(data) {
|
2716
3111
|
return ShcpApiSdk.request({
|
2717
3112
|
url: `/api/shcp-marketing/${ShcpApiSdk.getApiSuffix()}/marketing/task/log/create`,
|
@@ -2719,8 +3114,10 @@ class MarketingApi {
|
|
2719
3114
|
data,
|
2720
3115
|
});
|
2721
3116
|
}
|
2722
|
-
|
2723
|
-
|
3117
|
+
/**
|
3118
|
+
* 获取消息模板列表
|
3119
|
+
* URL: /api/shcp-marketing/${ShcpApiSdk.getApiSuffix()}/message/template/list
|
3120
|
+
*/
|
2724
3121
|
static getMessageTemplateList(data) {
|
2725
3122
|
return ShcpApiSdk.request({
|
2726
3123
|
url: `/api/shcp-marketing/${ShcpApiSdk.getApiSuffix()}/message/template/list`,
|
@@ -2728,8 +3125,10 @@ class MarketingApi {
|
|
2728
3125
|
data,
|
2729
3126
|
});
|
2730
3127
|
}
|
2731
|
-
|
2732
|
-
|
3128
|
+
/**
|
3129
|
+
* 获取消息模板详情
|
3130
|
+
* URL: /api/shcp-marketing/${ShcpApiSdk.getApiSuffix()}/message/template/detail
|
3131
|
+
*/
|
2733
3132
|
static getMessageTemplateDetail(id) {
|
2734
3133
|
return ShcpApiSdk.request({
|
2735
3134
|
url: `/api/shcp-marketing/${ShcpApiSdk.getApiSuffix()}/message/template/detail`,
|
@@ -2737,8 +3136,10 @@ class MarketingApi {
|
|
2737
3136
|
params: { id },
|
2738
3137
|
});
|
2739
3138
|
}
|
2740
|
-
|
2741
|
-
|
3139
|
+
/**
|
3140
|
+
* 获取模版列表数据
|
3141
|
+
* URL: /api/shcp-marketing/${ShcpApiSdk.getApiSuffix()}/marketing/content/list
|
3142
|
+
*/
|
2742
3143
|
static getSendContent(data) {
|
2743
3144
|
return ShcpApiSdk.request({
|
2744
3145
|
url: `/api/shcp-marketing/${ShcpApiSdk.getApiSuffix()}/marketing/content/list`,
|
@@ -2749,8 +3150,10 @@ class MarketingApi {
|
|
2749
3150
|
}
|
2750
3151
|
|
2751
3152
|
class MessageRecordApi {
|
2752
|
-
|
2753
|
-
|
3153
|
+
/**
|
3154
|
+
* 获取消息记录详情
|
3155
|
+
* URL: /api/shcp-message/${ShcpApiSdk.getApiSuffix()}/message/record/detail
|
3156
|
+
*/
|
2754
3157
|
static getDetail(id) {
|
2755
3158
|
return ShcpApiSdk.request({
|
2756
3159
|
url: `/api/shcp-message/${ShcpApiSdk.getApiSuffix()}/message/record/detail`,
|
@@ -2758,8 +3161,10 @@ class MessageRecordApi {
|
|
2758
3161
|
params: { id },
|
2759
3162
|
});
|
2760
3163
|
}
|
2761
|
-
|
2762
|
-
|
3164
|
+
/**
|
3165
|
+
* 按天分组获取消息记录分页
|
3166
|
+
* URL: /api/shcp-message/${ShcpApiSdk.getApiSuffix()}/message/record/pageGroupedByDay
|
3167
|
+
*/
|
2763
3168
|
static getPageGroupedByDay(data) {
|
2764
3169
|
return ShcpApiSdk.request({
|
2765
3170
|
url: `/api/shcp-message/${ShcpApiSdk.getApiSuffix()}/message/record/pageGroupedByDay`,
|
@@ -2771,8 +3176,10 @@ class MessageRecordApi {
|
|
2771
3176
|
},
|
2772
3177
|
});
|
2773
3178
|
}
|
2774
|
-
|
2775
|
-
|
3179
|
+
/**
|
3180
|
+
* 更新消息记录
|
3181
|
+
* URL: /api/shcp-message/${ShcpApiSdk.getApiSuffix()}/message/record/update
|
3182
|
+
*/
|
2776
3183
|
static update(data) {
|
2777
3184
|
return ShcpApiSdk.request({
|
2778
3185
|
url: `/api/shcp-message/${ShcpApiSdk.getApiSuffix()}/message/record/update`,
|
@@ -2784,8 +3191,10 @@ class MessageRecordApi {
|
|
2784
3191
|
|
2785
3192
|
class MineApi {
|
2786
3193
|
}
|
2787
|
-
|
2788
|
-
|
3194
|
+
/**
|
3195
|
+
* 获取用户信息
|
3196
|
+
* URL: /api/blade-system/user/info
|
3197
|
+
*/
|
2789
3198
|
MineApi.getUserInfo = (id) => {
|
2790
3199
|
return ShcpApiSdk.request({
|
2791
3200
|
url: `/api/blade-system/user/info`,
|
@@ -2793,8 +3202,10 @@ MineApi.getUserInfo = (id) => {
|
|
2793
3202
|
params: { id },
|
2794
3203
|
});
|
2795
3204
|
};
|
2796
|
-
|
2797
|
-
|
3205
|
+
/**
|
3206
|
+
* 更新用户信息
|
3207
|
+
* URL: /api/blade-system/user/update-info
|
3208
|
+
*/
|
2798
3209
|
MineApi.updateInfo = (data) => {
|
2799
3210
|
return ShcpApiSdk.request({
|
2800
3211
|
url: `/api/blade-system/user/update-info`,
|
@@ -2802,8 +3213,10 @@ MineApi.updateInfo = (data) => {
|
|
2802
3213
|
data,
|
2803
3214
|
});
|
2804
3215
|
};
|
2805
|
-
|
2806
|
-
|
3216
|
+
/**
|
3217
|
+
* 获取我的页面配置
|
3218
|
+
* URL: /api/blade-system/${ShcpApiSdk.getApiSuffix()}/appClient/pageConfig/get
|
3219
|
+
*/
|
2807
3220
|
MineApi.getMyPageConfig = (data) => {
|
2808
3221
|
return ShcpApiSdk.request({
|
2809
3222
|
url: `/api/blade-system/${ShcpApiSdk.getApiSuffix()}/appClient/pageConfig/get`,
|
@@ -2812,8 +3225,10 @@ MineApi.getMyPageConfig = (data) => {
|
|
2812
3225
|
custom: { showError: false },
|
2813
3226
|
});
|
2814
3227
|
};
|
2815
|
-
|
2816
|
-
|
3228
|
+
/**
|
3229
|
+
* 获取详情内容
|
3230
|
+
* URL: /api/shcp-km/${ShcpApiSdk.getApiSuffix()}/article/content/query
|
3231
|
+
*/
|
2817
3232
|
MineApi.getArticleContent = (id) => {
|
2818
3233
|
return ShcpApiSdk.request({
|
2819
3234
|
url: `/api/shcp-km/${ShcpApiSdk.getApiSuffix()}/article/content/query`,
|
@@ -2823,8 +3238,10 @@ MineApi.getArticleContent = (id) => {
|
|
2823
3238
|
};
|
2824
3239
|
|
2825
3240
|
class RightQrcodeApi {
|
2826
|
-
|
2827
|
-
|
3241
|
+
/**
|
3242
|
+
* 获取权益二维码分页
|
3243
|
+
* URL: /api/blade-system/${ShcpApiSdk.getApiSuffix()}/right/qrCode/page
|
3244
|
+
*/
|
2828
3245
|
static getPage(data) {
|
2829
3246
|
return ShcpApiSdk.request({
|
2830
3247
|
url: `/api/blade-system/${ShcpApiSdk.getApiSuffix()}/right/qrCode/page`,
|
@@ -2833,8 +3250,10 @@ class RightQrcodeApi {
|
|
2833
3250
|
params: data,
|
2834
3251
|
});
|
2835
3252
|
}
|
2836
|
-
|
2837
|
-
|
3253
|
+
/**
|
3254
|
+
* 更新权益二维码
|
3255
|
+
* URL: /api/blade-system/${ShcpApiSdk.getApiSuffix()}/right/qrCode/update
|
3256
|
+
*/
|
2838
3257
|
static update(data) {
|
2839
3258
|
return ShcpApiSdk.request({
|
2840
3259
|
url: `/api/blade-system/${ShcpApiSdk.getApiSuffix()}/right/qrCode/update`,
|
@@ -2842,8 +3261,10 @@ class RightQrcodeApi {
|
|
2842
3261
|
data,
|
2843
3262
|
});
|
2844
3263
|
}
|
2845
|
-
|
2846
|
-
|
3264
|
+
/**
|
3265
|
+
* 创建权益二维码
|
3266
|
+
* URL: /api/blade-system/${ShcpApiSdk.getApiSuffix()}/right/qrCode/create
|
3267
|
+
*/
|
2847
3268
|
static create(data) {
|
2848
3269
|
return ShcpApiSdk.request({
|
2849
3270
|
url: `/api/blade-system/${ShcpApiSdk.getApiSuffix()}/right/qrCode/create`,
|
@@ -2851,8 +3272,10 @@ class RightQrcodeApi {
|
|
2851
3272
|
data,
|
2852
3273
|
});
|
2853
3274
|
}
|
2854
|
-
|
2855
|
-
|
3275
|
+
/**
|
3276
|
+
* 删除权益二维码
|
3277
|
+
* URL: /api/blade-system/${ShcpApiSdk.getApiSuffix()}/right/qrCode/delete
|
3278
|
+
*/
|
2856
3279
|
static delete(ids) {
|
2857
3280
|
return ShcpApiSdk.request({
|
2858
3281
|
url: `/api/blade-system/${ShcpApiSdk.getApiSuffix()}/right/qrCode/delete`,
|
@@ -2860,8 +3283,10 @@ class RightQrcodeApi {
|
|
2860
3283
|
data: ids,
|
2861
3284
|
});
|
2862
3285
|
}
|
2863
|
-
|
2864
|
-
|
3286
|
+
/**
|
3287
|
+
* 获取权益二维码详情
|
3288
|
+
* URL: /api/blade-system/${ShcpApiSdk.getApiSuffix()}/right/qrCode/detail
|
3289
|
+
*/
|
2865
3290
|
static getDetail(id) {
|
2866
3291
|
return ShcpApiSdk.request({
|
2867
3292
|
url: `/api/blade-system/${ShcpApiSdk.getApiSuffix()}/right/qrCode/detail`,
|
@@ -2872,8 +3297,10 @@ class RightQrcodeApi {
|
|
2872
3297
|
}
|
2873
3298
|
|
2874
3299
|
class RightServiceConfigApi {
|
2875
|
-
|
2876
|
-
|
3300
|
+
/**
|
3301
|
+
* 通用.查询单个(按ID)
|
3302
|
+
* URL: /api/blade-system/${ShcpApiSdk.getApiSuffix()}/right/serviceConfig/detail
|
3303
|
+
*/
|
2877
3304
|
static getDetail(id) {
|
2878
3305
|
return ShcpApiSdk.request({
|
2879
3306
|
url: `/api/blade-system/${ShcpApiSdk.getApiSuffix()}/right/serviceConfig/detail`,
|
@@ -2881,8 +3308,10 @@ class RightServiceConfigApi {
|
|
2881
3308
|
params: { id },
|
2882
3309
|
});
|
2883
3310
|
}
|
2884
|
-
|
2885
|
-
|
3311
|
+
/**
|
3312
|
+
* 通用.查询单个(按条件)
|
3313
|
+
* URL: /api/blade-system/${ShcpApiSdk.getApiSuffix()}/right/serviceConfig/get
|
3314
|
+
*/
|
2886
3315
|
static get(data) {
|
2887
3316
|
return ShcpApiSdk.request({
|
2888
3317
|
url: `/api/blade-system/${ShcpApiSdk.getApiSuffix()}/right/serviceConfig/get`,
|
@@ -2890,8 +3319,10 @@ class RightServiceConfigApi {
|
|
2890
3319
|
data,
|
2891
3320
|
});
|
2892
3321
|
}
|
2893
|
-
|
2894
|
-
|
3322
|
+
/**
|
3323
|
+
* 通用.查询列表
|
3324
|
+
* URL: /api/blade-system/${ShcpApiSdk.getApiSuffix()}/right/serviceConfig/list
|
3325
|
+
*/
|
2895
3326
|
static getList(data) {
|
2896
3327
|
return ShcpApiSdk.request({
|
2897
3328
|
url: `/api/blade-system/${ShcpApiSdk.getApiSuffix()}/right/serviceConfig/list`,
|
@@ -2899,8 +3330,10 @@ class RightServiceConfigApi {
|
|
2899
3330
|
data,
|
2900
3331
|
});
|
2901
3332
|
}
|
2902
|
-
|
2903
|
-
|
3333
|
+
/**
|
3334
|
+
* 慢病管理.查询单个(按ID)
|
3335
|
+
* URL: /api/blade-system/${ShcpApiSdk.getApiSuffix()}/right/serviceConfig/diseaseCare/detail
|
3336
|
+
*/
|
2904
3337
|
static getDiseaseCareDetail(id) {
|
2905
3338
|
return ShcpApiSdk.request({
|
2906
3339
|
url: `/api/blade-system/${ShcpApiSdk.getApiSuffix()}/right/serviceConfig/diseaseCare/detail`,
|
@@ -2908,8 +3341,10 @@ class RightServiceConfigApi {
|
|
2908
3341
|
params: { id },
|
2909
3342
|
});
|
2910
3343
|
}
|
2911
|
-
|
2912
|
-
|
3344
|
+
/**
|
3345
|
+
* 慢病管理.查询单个(按条件)
|
3346
|
+
* URL: /api/blade-system/${ShcpApiSdk.getApiSuffix()}/right/serviceConfig/diseaseCare/get
|
3347
|
+
*/
|
2913
3348
|
static getDiseaseCareConfig(data) {
|
2914
3349
|
return ShcpApiSdk.request({
|
2915
3350
|
url: `/api/blade-system/${ShcpApiSdk.getApiSuffix()}/right/serviceConfig/diseaseCare/get`,
|
@@ -2917,8 +3352,10 @@ class RightServiceConfigApi {
|
|
2917
3352
|
data,
|
2918
3353
|
});
|
2919
3354
|
}
|
2920
|
-
|
2921
|
-
|
3355
|
+
/**
|
3356
|
+
* 课题研究.查询单个(按ID)
|
3357
|
+
* URL: /api/blade-system/${ShcpApiSdk.getApiSuffix()}/right/serviceConfig/healthStudy/detail
|
3358
|
+
*/
|
2922
3359
|
static getHealthStudyDetail(id) {
|
2923
3360
|
return ShcpApiSdk.request({
|
2924
3361
|
url: `/api/blade-system/${ShcpApiSdk.getApiSuffix()}/right/serviceConfig/healthStudy/detail`,
|
@@ -2926,8 +3363,10 @@ class RightServiceConfigApi {
|
|
2926
3363
|
params: { id },
|
2927
3364
|
});
|
2928
3365
|
}
|
2929
|
-
|
2930
|
-
|
3366
|
+
/**
|
3367
|
+
* 课题研究.查询单个(按条件)
|
3368
|
+
* URL: /api/blade-system/${ShcpApiSdk.getApiSuffix()}/right/serviceConfig/healthStudy/get
|
3369
|
+
*/
|
2931
3370
|
static getHealthStudyConfig(data) {
|
2932
3371
|
return ShcpApiSdk.request({
|
2933
3372
|
url: `/api/blade-system/${ShcpApiSdk.getApiSuffix()}/right/serviceConfig/healthStudy/get`,
|
@@ -2935,8 +3374,10 @@ class RightServiceConfigApi {
|
|
2935
3374
|
data,
|
2936
3375
|
});
|
2937
3376
|
}
|
2938
|
-
|
2939
|
-
|
3377
|
+
/**
|
3378
|
+
* 健康自测.查询单个(按条件)
|
3379
|
+
* URL: /api/blade-system/${ShcpApiSdk.getApiSuffix()}/right/serviceConfig/healthSelfAssessment/get
|
3380
|
+
*/
|
2940
3381
|
static getHealthSelfAssessmentConfig(data) {
|
2941
3382
|
return ShcpApiSdk.request({
|
2942
3383
|
url: `/api/blade-system/${ShcpApiSdk.getApiSuffix()}/right/serviceConfig/healthSelfAssessment/get`,
|
@@ -2944,8 +3385,10 @@ class RightServiceConfigApi {
|
|
2944
3385
|
data,
|
2945
3386
|
});
|
2946
3387
|
}
|
2947
|
-
|
2948
|
-
|
3388
|
+
/**
|
3389
|
+
* 健康档案.查询单个(按条件)
|
3390
|
+
* URL: /api/blade-system/${ShcpApiSdk.getApiSuffix()}/right/serviceConfig/healthProfile/get
|
3391
|
+
*/
|
2949
3392
|
static getHealthProfileConfig(data) {
|
2950
3393
|
return ShcpApiSdk.request({
|
2951
3394
|
url: `/api/blade-system/${ShcpApiSdk.getApiSuffix()}/right/serviceConfig/healthProfile/get`,
|
@@ -2953,8 +3396,10 @@ class RightServiceConfigApi {
|
|
2953
3396
|
data,
|
2954
3397
|
});
|
2955
3398
|
}
|
2956
|
-
|
2957
|
-
|
3399
|
+
/**
|
3400
|
+
* 健康工具.查询单个(按条件)
|
3401
|
+
* URL: /api/blade-system/${ShcpApiSdk.getApiSuffix()}/right/serviceConfig/healthTool/get
|
3402
|
+
*/
|
2958
3403
|
static getHealthToolConfig(data) {
|
2959
3404
|
return ShcpApiSdk.request({
|
2960
3405
|
url: `/api/blade-system/${ShcpApiSdk.getApiSuffix()}/right/serviceConfig/healthTool/get`,
|
@@ -2962,8 +3407,10 @@ class RightServiceConfigApi {
|
|
2962
3407
|
data,
|
2963
3408
|
});
|
2964
3409
|
}
|
2965
|
-
|
2966
|
-
|
3410
|
+
/**
|
3411
|
+
* 健康咨询.查询单个(按条件)
|
3412
|
+
* URL: /api/blade-system/${ShcpApiSdk.getApiSuffix()}/right/serviceConfig/healthConsult/get
|
3413
|
+
*/
|
2967
3414
|
static getHealthConsultConfig(data) {
|
2968
3415
|
return ShcpApiSdk.request({
|
2969
3416
|
url: `/api/blade-system/${ShcpApiSdk.getApiSuffix()}/right/serviceConfig/healthConsult/get`,
|
@@ -2974,8 +3421,10 @@ class RightServiceConfigApi {
|
|
2974
3421
|
}
|
2975
3422
|
|
2976
3423
|
class SystemRightApi {
|
2977
|
-
|
2978
|
-
|
3424
|
+
/**
|
3425
|
+
* 权益详情
|
3426
|
+
* URL: /api/blade-system/${ShcpApiSdk.getApiSuffix()}/right/detail
|
3427
|
+
*/
|
2979
3428
|
static getDetail(params) {
|
2980
3429
|
return ShcpApiSdk.request({
|
2981
3430
|
url: `/api/blade-system/${ShcpApiSdk.getApiSuffix()}/right/detail`,
|
@@ -2983,8 +3432,10 @@ class SystemRightApi {
|
|
2983
3432
|
params,
|
2984
3433
|
});
|
2985
3434
|
}
|
2986
|
-
|
2987
|
-
|
3435
|
+
/**
|
3436
|
+
* 权益列表
|
3437
|
+
* URL: /api/blade-system/${ShcpApiSdk.getApiSuffix()}/right/get
|
3438
|
+
*/
|
2988
3439
|
static get(data) {
|
2989
3440
|
return ShcpApiSdk.request({
|
2990
3441
|
url: `/api/blade-system/${ShcpApiSdk.getApiSuffix()}/right/get`,
|
@@ -2992,8 +3443,10 @@ class SystemRightApi {
|
|
2992
3443
|
data,
|
2993
3444
|
});
|
2994
3445
|
}
|
2995
|
-
|
2996
|
-
|
3446
|
+
/**
|
3447
|
+
* 权益列表
|
3448
|
+
* URL: /api/shcp-system/${ShcpApiSdk.getApiSuffix()}/right/listByIds
|
3449
|
+
*/
|
2997
3450
|
static getListByIds(data) {
|
2998
3451
|
return ShcpApiSdk.request({
|
2999
3452
|
url: `/api/shcp-system/${ShcpApiSdk.getApiSuffix()}/right/listByIds`,
|
@@ -3001,8 +3454,10 @@ class SystemRightApi {
|
|
3001
3454
|
data,
|
3002
3455
|
});
|
3003
3456
|
}
|
3004
|
-
|
3005
|
-
|
3457
|
+
/**
|
3458
|
+
* 权益列表
|
3459
|
+
* URL: /api/blade-system/${ShcpApiSdk.getApiSuffix()}/right/list
|
3460
|
+
*/
|
3006
3461
|
static getList(data) {
|
3007
3462
|
return ShcpApiSdk.request({
|
3008
3463
|
url: `/api/blade-system/${ShcpApiSdk.getApiSuffix()}/right/list`,
|
@@ -3010,8 +3465,10 @@ class SystemRightApi {
|
|
3010
3465
|
data,
|
3011
3466
|
});
|
3012
3467
|
}
|
3013
|
-
|
3014
|
-
|
3468
|
+
/**
|
3469
|
+
* 权益列表
|
3470
|
+
* URL: /api/blade-system/${ShcpApiSdk.getApiSuffix()}/right/page
|
3471
|
+
*/
|
3015
3472
|
static getPage(data) {
|
3016
3473
|
return ShcpApiSdk.request({
|
3017
3474
|
url: `/api/blade-system/${ShcpApiSdk.getApiSuffix()}/right/page`,
|
@@ -3023,8 +3480,10 @@ class SystemRightApi {
|
|
3023
3480
|
},
|
3024
3481
|
});
|
3025
3482
|
}
|
3026
|
-
|
3027
|
-
|
3483
|
+
/**
|
3484
|
+
* 初始化权益
|
3485
|
+
* URL: /api/shcp-system/${ShcpApiSdk.getApiSuffix()}/right/initRight
|
3486
|
+
*/
|
3028
3487
|
static init(params) {
|
3029
3488
|
return ShcpApiSdk.request({
|
3030
3489
|
url: `/api/shcp-system/${ShcpApiSdk.getApiSuffix()}/right/initRight`,
|
@@ -3032,8 +3491,10 @@ class SystemRightApi {
|
|
3032
3491
|
params,
|
3033
3492
|
});
|
3034
3493
|
}
|
3035
|
-
|
3036
|
-
|
3494
|
+
/**
|
3495
|
+
* 复制
|
3496
|
+
* URL: /api/shcp-system/${ShcpApiSdk.getApiSuffix()}/right/copy
|
3497
|
+
*/
|
3037
3498
|
static copy(data) {
|
3038
3499
|
return ShcpApiSdk.request({
|
3039
3500
|
url: `/api/shcp-system/${ShcpApiSdk.getApiSuffix()}/right/copy`,
|
@@ -3041,8 +3502,10 @@ class SystemRightApi {
|
|
3041
3502
|
data,
|
3042
3503
|
});
|
3043
3504
|
}
|
3044
|
-
|
3045
|
-
|
3505
|
+
/**
|
3506
|
+
* 更新复制配置
|
3507
|
+
* URL: /api/shcp-system/${ShcpApiSdk.getApiSuffix()}/right/updateCopyConfig
|
3508
|
+
*/
|
3046
3509
|
static updateCopyConfig(data) {
|
3047
3510
|
return ShcpApiSdk.request({
|
3048
3511
|
url: `/api/shcp-system/${ShcpApiSdk.getApiSuffix()}/right/updateCopyConfig`,
|
@@ -3053,8 +3516,10 @@ class SystemRightApi {
|
|
3053
3516
|
}
|
3054
3517
|
|
3055
3518
|
class UserGroupApi {
|
3056
|
-
|
3057
|
-
|
3519
|
+
/**
|
3520
|
+
* 更新用户组
|
3521
|
+
* URL: /api/blade-system/${ShcpApiSdk.getApiSuffix()}/userGroup/update
|
3522
|
+
*/
|
3058
3523
|
static update(data) {
|
3059
3524
|
return ShcpApiSdk.request({
|
3060
3525
|
url: `/api/blade-system/${ShcpApiSdk.getApiSuffix()}/userGroup/update`,
|
@@ -3062,8 +3527,10 @@ class UserGroupApi {
|
|
3062
3527
|
data,
|
3063
3528
|
});
|
3064
3529
|
}
|
3065
|
-
|
3066
|
-
|
3530
|
+
/**
|
3531
|
+
* 解绑用户
|
3532
|
+
* URL: /api/blade-system/${ShcpApiSdk.getApiSuffix()}/userGroup/unbindUser
|
3533
|
+
*/
|
3067
3534
|
static unbindUser(data) {
|
3068
3535
|
return ShcpApiSdk.request({
|
3069
3536
|
url: `/api/blade-system/${ShcpApiSdk.getApiSuffix()}/userGroup/unbindUser`,
|
@@ -3071,8 +3538,10 @@ class UserGroupApi {
|
|
3071
3538
|
data,
|
3072
3539
|
});
|
3073
3540
|
}
|
3074
|
-
|
3075
|
-
|
3541
|
+
/**
|
3542
|
+
* 创建用户组
|
3543
|
+
* URL: /api/blade-system/${ShcpApiSdk.getApiSuffix()}/userGroup/create
|
3544
|
+
*/
|
3076
3545
|
static create(data) {
|
3077
3546
|
return ShcpApiSdk.request({
|
3078
3547
|
url: `/api/blade-system/${ShcpApiSdk.getApiSuffix()}/userGroup/create`,
|
@@ -3080,8 +3549,10 @@ class UserGroupApi {
|
|
3080
3549
|
data,
|
3081
3550
|
});
|
3082
3551
|
}
|
3083
|
-
|
3084
|
-
|
3552
|
+
/**
|
3553
|
+
* 绑定用户
|
3554
|
+
* URL: /api/blade-system/${ShcpApiSdk.getApiSuffix()}/userGroup/bindUser
|
3555
|
+
*/
|
3085
3556
|
static bindUser(data) {
|
3086
3557
|
return ShcpApiSdk.request({
|
3087
3558
|
url: `/api/blade-system/${ShcpApiSdk.getApiSuffix()}/userGroup/bindUser`,
|
@@ -3089,8 +3560,10 @@ class UserGroupApi {
|
|
3089
3560
|
data,
|
3090
3561
|
});
|
3091
3562
|
}
|
3092
|
-
|
3093
|
-
|
3563
|
+
/**
|
3564
|
+
* 获取用户组树
|
3565
|
+
* URL: /api/blade-system/${ShcpApiSdk.getApiSuffix()}/userGroup/tree
|
3566
|
+
*/
|
3094
3567
|
static getTree(data) {
|
3095
3568
|
return ShcpApiSdk.request({
|
3096
3569
|
url: `/api/blade-system/${ShcpApiSdk.getApiSuffix()}/userGroup/tree`,
|
@@ -3098,8 +3571,10 @@ class UserGroupApi {
|
|
3098
3571
|
data,
|
3099
3572
|
});
|
3100
3573
|
}
|
3101
|
-
|
3102
|
-
|
3574
|
+
/**
|
3575
|
+
* 获取用户组详情
|
3576
|
+
* URL: /api/blade-system/${ShcpApiSdk.getApiSuffix()}/userGroup/detail
|
3577
|
+
*/
|
3103
3578
|
static getDetail(id) {
|
3104
3579
|
return ShcpApiSdk.request({
|
3105
3580
|
url: `/api/blade-system/${ShcpApiSdk.getApiSuffix()}/userGroup/detail`,
|
@@ -3107,8 +3582,10 @@ class UserGroupApi {
|
|
3107
3582
|
params: { id },
|
3108
3583
|
});
|
3109
3584
|
}
|
3110
|
-
|
3111
|
-
|
3585
|
+
/**
|
3586
|
+
* 查询医生管理组用户
|
3587
|
+
* URL: /api/blade-system/${ShcpApiSdk.getApiSuffix()}/userGroup/bladeUserPage
|
3588
|
+
*/
|
3112
3589
|
static getBladeUserPage(data) {
|
3113
3590
|
return ShcpApiSdk.request({
|
3114
3591
|
url: `/api/blade-system/${ShcpApiSdk.getApiSuffix()}/userGroup/bladeUserPage`,
|
@@ -3116,8 +3593,10 @@ class UserGroupApi {
|
|
3116
3593
|
data,
|
3117
3594
|
});
|
3118
3595
|
}
|
3119
|
-
|
3120
|
-
|
3596
|
+
/**
|
3597
|
+
* 删除用户组
|
3598
|
+
* URL: /api/blade-system/${ShcpApiSdk.getApiSuffix()}/userGroup/delete
|
3599
|
+
*/
|
3121
3600
|
static delete(data) {
|
3122
3601
|
return ShcpApiSdk.request({
|
3123
3602
|
url: `/api/blade-system/${ShcpApiSdk.getApiSuffix()}/userGroup/delete`,
|
@@ -3127,5 +3606,5 @@ class UserGroupApi {
|
|
3127
3606
|
}
|
3128
3607
|
}
|
3129
3608
|
|
3130
|
-
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, 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, ServiceFlowStatus, ServiceTaskCategory, 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 };
|
3609
|
+
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, 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, ServiceFlowStatus, ServiceTaskCategory, 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 };
|
3131
3610
|
//# sourceMappingURL=index.esm.js.map
|