shcp-api-lib 1.0.0 → 1.0.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (31) hide show
  1. package/dist/index.d.ts +549 -1
  2. package/dist/index.esm.js +821 -320
  3. package/dist/index.esm.js.map +1 -1
  4. package/dist/index.js +821 -319
  5. package/dist/index.js.map +1 -1
  6. package/dist/types/src/api/app-client-page-config-api.d.ts +4 -0
  7. package/dist/types/src/api/app-client-setting-api.d.ts +4 -0
  8. package/dist/types/src/api/common-dict-api.d.ts +4 -0
  9. package/dist/types/src/api/common-file-api.d.ts +2 -2
  10. package/dist/types/src/api/common-right-api.d.ts +28 -0
  11. package/dist/types/src/api/consumer-api.d.ts +92 -0
  12. package/dist/types/src/api/consumer-bind-api.d.ts +32 -0
  13. package/dist/types/src/api/consumer-favorite-api.d.ts +16 -0
  14. package/dist/types/src/api/health-common-api.d.ts +40 -0
  15. package/dist/types/src/api/health-metric-api.d.ts +20 -0
  16. package/dist/types/src/api/health-profile-api.d.ts +16 -0
  17. package/dist/types/src/api/health-self-assess-api.d.ts +12 -0
  18. package/dist/types/src/api/help-center.d.ts +4 -0
  19. package/dist/types/src/api/im-user-api.d.ts +12 -0
  20. package/dist/types/src/api/km-article-api.d.ts +15 -0
  21. package/dist/types/src/api/km-form-api.d.ts +4 -0
  22. package/dist/types/src/api/km-form-rule-relation-api.d.ts +8 -0
  23. package/dist/types/src/api/login-api.d.ts +28 -0
  24. package/dist/types/src/api/marketing-api.d.ts +48 -0
  25. package/dist/types/src/api/message-record-api.d.ts +12 -0
  26. package/dist/types/src/api/mine-api.d.ts +16 -0
  27. package/dist/types/src/api/right-qrcode-api.d.ts +20 -0
  28. package/dist/types/src/api/right-service-config-api.d.ts +44 -0
  29. package/dist/types/src/api/system-right-api.d.ts +32 -0
  30. package/dist/types/src/api/user-group-api.d.ts +32 -0
  31. package/package.json +1 -1
package/dist/index.esm.js CHANGED
@@ -860,8 +860,10 @@ class _ShcpApiSdk {
860
860
  const ShcpApiSdk = new _ShcpApiSdk();
861
861
 
862
862
  class AppClientApi {
863
- // 查询单个(按ID)
864
- // URL: /api/blade-system/${ShcpApiSdk.getApiSuffix()}/appClient/detail
863
+ /*
864
+ * 查询单个(按ID)
865
+ * URL: /api/blade-system/${ShcpApiSdk.getApiSuffix()}/appClient/detail
866
+ */
865
867
  static getDetail(data) {
866
868
  return ShcpApiSdk.request({
867
869
  url: `/api/blade-system/${ShcpApiSdk.getApiSuffix()}/appClient/detail`,
@@ -869,8 +871,10 @@ class AppClientApi {
869
871
  data,
870
872
  });
871
873
  }
872
- // 查询单个(按条件)
873
- // URL: /api/blade-system/${ShcpApiSdk.getApiSuffix()}/appClient/get
874
+ /*
875
+ * 查询单个(按条件)
876
+ * URL: /api/blade-system/${ShcpApiSdk.getApiSuffix()}/appClient/get
877
+ */
874
878
  static get(data) {
875
879
  return ShcpApiSdk.request({
876
880
  url: `/api/blade-system/${ShcpApiSdk.getApiSuffix()}/appClient/get`,
@@ -878,8 +882,10 @@ class AppClientApi {
878
882
  data,
879
883
  });
880
884
  }
881
- // 查询列表
882
- // URL: /api/blade-system/${ShcpApiSdk.getApiSuffix()}/appClient/list
885
+ /*
886
+ * 查询列表
887
+ * URL: /api/blade-system/${ShcpApiSdk.getApiSuffix()}/appClient/list
888
+ */
883
889
  static getList(data) {
884
890
  return ShcpApiSdk.request({
885
891
  url: `/api/blade-system/${ShcpApiSdk.getApiSuffix()}/appClient/list`,
@@ -887,8 +893,10 @@ class AppClientApi {
887
893
  data,
888
894
  });
889
895
  }
890
- // 查询列表(capp彩蛋使用)
891
- // URL: /api/blade-system/${ShcpApiSdk.getApiSuffix()}/appClient/specialList
896
+ /*
897
+ * 查询列表(capp彩蛋使用)
898
+ * URL: /api/blade-system/${ShcpApiSdk.getApiSuffix()}/appClient/specialList
899
+ */
892
900
  static getSpecialList(data) {
893
901
  return ShcpApiSdk.request({
894
902
  url: `/api/blade-system/${ShcpApiSdk.getApiSuffix()}/appClient/specialList`,
@@ -896,8 +904,10 @@ class AppClientApi {
896
904
  data,
897
905
  });
898
906
  }
899
- // 复制
900
- // URL: /api/blade-system/${ShcpApiSdk.getApiSuffix()}/appClient/copy
907
+ /*
908
+ * 复制
909
+ * URL: /api/blade-system/${ShcpApiSdk.getApiSuffix()}/appClient/copy
910
+ */
901
911
  static copy(data) {
902
912
  return ShcpApiSdk.request({
903
913
  url: `/api/blade-system/${ShcpApiSdk.getApiSuffix()}/appClient/copy`,
@@ -905,8 +915,10 @@ class AppClientApi {
905
915
  data,
906
916
  });
907
917
  }
908
- // 更新复制配置
909
- // URL: /api/blade-system/${ShcpApiSdk.getApiSuffix()}/appClient/updateCopyConfig
918
+ /*
919
+ * 更新复制配置
920
+ * URL: /api/blade-system/${ShcpApiSdk.getApiSuffix()}/appClient/updateCopyConfig
921
+ */
910
922
  static updateCopyConfig(data) {
911
923
  return ShcpApiSdk.request({
912
924
  url: `/api/blade-system/${ShcpApiSdk.getApiSuffix()}/appClient/updateCopyConfig`,
@@ -917,8 +929,10 @@ class AppClientApi {
917
929
  }
918
930
 
919
931
  class AppClientPageConfigApi {
920
- // 查询列表
921
- // URL: /api/blade-system/${ShcpApiSdk.getApiSuffix()}/appClient/pageConfig/list
932
+ /**
933
+ * 查询列表
934
+ * URL: /api/blade-system/${ShcpApiSdk.getApiSuffix()}/appClient/pageConfig/list
935
+ */
922
936
  static getList(data) {
923
937
  return ShcpApiSdk.request({
924
938
  url: `/api/blade-system/${ShcpApiSdk.getApiSuffix()}/appClient/pageConfig/list`,
@@ -929,8 +943,10 @@ class AppClientPageConfigApi {
929
943
  }
930
944
 
931
945
  class AppClientSettingApi {
932
- // 查询单个
933
- // URL: /api/blade-system/${ShcpApiSdk.getApiSuffix()}/appClient/setting/get
946
+ /**
947
+ * 查询单个
948
+ * URL: /api/blade-system/${ShcpApiSdk.getApiSuffix()}/appClient/setting/get
949
+ */
934
950
  static get(data) {
935
951
  return ShcpApiSdk.request({
936
952
  url: `/api/blade-system/${ShcpApiSdk.getApiSuffix()}/appClient/setting/get`,
@@ -941,8 +957,10 @@ class AppClientSettingApi {
941
957
  }
942
958
 
943
959
  class CommonDictApi {
944
- // 查询单个详情
945
- // URL: /api/blade-system/dict/detail
960
+ /**
961
+ * 查询单个详情
962
+ * URL: /api/blade-system/dict/detail
963
+ */
946
964
  static getDetail(data) {
947
965
  return ShcpApiSdk.request({
948
966
  url: '/api/blade-system/dict/detail',
@@ -1025,9 +1043,188 @@ class CommonDictApi {
1025
1043
  }
1026
1044
  }
1027
1045
 
1046
+ // 七牛云区域上传URL映射常量
1047
+ const QINIU_UPLOAD_URLS = {
1048
+ ECN: 'https://up.qiniup.com',
1049
+ NCN: 'https://up-z1.qiniup.com',
1050
+ SCN: 'https://up-z2.qiniup.com',
1051
+ NA: 'https://up-na0.qiniup.com',
1052
+ ASG: 'https://up-as0.qiniup.com',
1053
+ };
1054
+ // 根据区域代码获取上传URL
1055
+ function getUploadURL(code) {
1056
+ return (code && QINIU_UPLOAD_URLS[code]) || null;
1057
+ }
1058
+ // 七牛云上传 API 类
1059
+ class _QiniuUploaderApi {
1060
+ constructor() {
1061
+ // 请参考demo的index.js中的initQiniu()方法,若在使用处对options进行了赋值,则此处config不需要赋默认值。init(options) 即updateConfigWithOptions(options),会对config进行赋值
1062
+ this.config = {
1063
+ // bucket 所在区域。ECN, SCN, NCN, NA, ASG,分别对应七牛云的:华东,华南,华北,北美,新加坡 5 个区域
1064
+ qiniuRegion: '',
1065
+ // 七牛云bucket 外链前缀,外链在下载资源时用到
1066
+ qiniuBucketURLPrefix: '',
1067
+ // 获取uptoken方法三选一即可,执行优先级为:uptoken > uptokenURL > uptokenFunc。三选一,剩下两个置空。推荐使用uptokenURL,详情请见 README.md
1068
+ // 由其他程序生成七牛云uptoken,然后直接写入uptoken
1069
+ qiniuUploadToken: '',
1070
+ // 从指定 url 通过 HTTP GET 获取 uptoken,返回的格式必须是 json 且包含 uptoken 字段,例如: {"uptoken": "0MLvWPnyy..."}
1071
+ qiniuUploadTokenURL: '',
1072
+ // qiniuShouldUseQiniuFileName 如果是 true,则文件的 key 由 qiniu 服务器分配(全局去重)。如果是 false,则文件的 key 使用微信自动生成的 filename。出于初代sdk用户升级后兼容问题的考虑,默认是 false。
1073
+ // 微信自动生成的 filename较长,导致fileURL较长。推荐使用{qiniuShouldUseQiniuFileName: true} + "通过fileURL下载文件时,自定义下载名" 的组合方式。
1074
+ // 自定义上传key 需要两个条件:1. 此处 shouldUseQiniuFileName 值为false。 2. 通过修改qiniuUploader.upload方法传入的options参数,可以进行自定义key。(请不要直接在sdk中修改options参数,修改方法请见demo的index.js)
1075
+ // 通过fileURL下载文件时,自定义下载名,请参考:七牛云"对象存储 > 产品手册 > 下载资源 > 下载设置 > 自定义资源下载名"(https://developer.qiniu.com/kodo/manual/1659/download-setting)。本sdk在README.md的"常见问题"板块中,有"通过fileURL下载文件时,自定义下载名"使用样例。
1076
+ qiniuShouldUseQiniuFileName: false,
1077
+ shouldUseQiniuFileName: false,
1078
+ fileType: '',
1079
+ };
1080
+ }
1081
+ // init(options) 将七牛云相关配置初始化进本sdk
1082
+ // 在整个程序生命周期中,只需要 init(options); 一次即可
1083
+ // 如果需要变更七牛云配置,再次调用 init(options); 即可
1084
+ init(options) {
1085
+ this.updateConfigWithOptions(options);
1086
+ }
1087
+ // 正式上传的前置方法,做预处理,应用七牛云配置
1088
+ async upload(filePath, suffix) {
1089
+ if (filePath == null) {
1090
+ throw new Error('qiniu uploader need filePath to upload');
1091
+ }
1092
+ const res = await this.getQiniuPolicy({
1093
+ tenantId: '000000',
1094
+ fileNames: (filePath.split('/').pop() || '') + '.' + suffix,
1095
+ });
1096
+ const result = res.data;
1097
+ if (result) {
1098
+ this.updateConfigWithOptions(result);
1099
+ // 自定义上传key(即自定义上传文件名)。通过修改qiniuUploader.upload方法传入的options参数,可以进行自定义文件名称。如果options非空,则使用options中的key作为fileName
1100
+ if (result.key) {
1101
+ filePath = result.key;
1102
+ }
1103
+ }
1104
+ if (this.config.qiniuUploadToken) {
1105
+ return await this.doUpload(filePath);
1106
+ }
1107
+ else if (this.config.qiniuUploadTokenURL) {
1108
+ const token = await this.getQiniuToken();
1109
+ if (token) {
1110
+ return await this.doUpload(filePath);
1111
+ }
1112
+ }
1113
+ throw new Error('qiniu uploader need one of [uptoken, uptokenURL]');
1114
+ }
1115
+ // 更新七牛云配置
1116
+ updateConfigWithOptions(options) {
1117
+ if (options.region) {
1118
+ this.config.qiniuRegion = options.region;
1119
+ }
1120
+ else {
1121
+ console.error('qiniu uploader need your bucket region');
1122
+ }
1123
+ if (options.uptoken) {
1124
+ this.config.qiniuUploadToken = options.uptoken;
1125
+ }
1126
+ else if (options.uptokenURL) {
1127
+ this.config.qiniuUploadTokenURL = options.uptokenURL;
1128
+ }
1129
+ if (options.domain) {
1130
+ this.config.qiniuBucketURLPrefix = options.domain;
1131
+ }
1132
+ if (options.shouldUseQiniuFileName !== undefined) {
1133
+ this.config.qiniuShouldUseQiniuFileName = options.shouldUseQiniuFileName;
1134
+ }
1135
+ if (options.fileType) {
1136
+ this.config.fileType = options.fileType;
1137
+ }
1138
+ if (options.uploadFile) {
1139
+ this.config.uploadFile = options.uploadFile;
1140
+ }
1141
+ }
1142
+ // 正式上传
1143
+ async doUpload(filePath) {
1144
+ if (this.config.qiniuUploadToken == null || this.config.qiniuUploadToken.length === 0) {
1145
+ throw new Error('qiniu UploadToken is null, please check the init config or networking');
1146
+ }
1147
+ const url = getUploadURL(this.config.qiniuRegion);
1148
+ if (!url) {
1149
+ throw new Error('Invalid qiniu region code');
1150
+ }
1151
+ const fileName = filePath.split('//')[1];
1152
+ const formData = {
1153
+ token: this.config.qiniuUploadToken,
1154
+ };
1155
+ // qiniuShouldUseQiniuFileName 如果是 true,则文件的 key 由 qiniu 服务器分配(全局去重)。如果是 false,则文件的 key 使用微信自动生成的 filename。出于初代sdk用户升级后兼容问题的考虑,默认是 false。
1156
+ if (!this.config.qiniuShouldUseQiniuFileName) {
1157
+ formData.key = fileName;
1158
+ }
1159
+ const config = this.config;
1160
+ const res = await this.config.uploadFile?.({
1161
+ url,
1162
+ filePath,
1163
+ name: 'file',
1164
+ formData,
1165
+ });
1166
+ const dataString = res.data;
1167
+ // // this if case is a compatibility with wechat server returned a charcode, but was fixed
1168
+ // if(res.data.hasOwnProperty('type') && res.data.type === 'Buffer'){
1169
+ // dataString = String.fromCharCode.apply(null, res.data.data)
1170
+ // }
1171
+ const dataObject = JSON.parse(dataString);
1172
+ // 拼接fileURL
1173
+ const fileURL = config.qiniuBucketURLPrefix + '/' + dataObject.key;
1174
+ const result = {
1175
+ ...dataObject,
1176
+ name: filePath,
1177
+ fileURL,
1178
+ // imageURL字段和fileURL字段重复,但本sdk不做删除,因为在最初版本使用的是imageURL。直接删除可能导致原有用户升级至新版sdk后出现异常。
1179
+ imageURL: fileURL,
1180
+ fileType: config.fileType,
1181
+ };
1182
+ return result;
1183
+ }
1184
+ // 获取七牛云uptoken, url为后端服务器获取七牛云uptoken接口
1185
+ async getQiniuToken() {
1186
+ const res = await ShcpApiSdk.request({
1187
+ url: this.config.qiniuUploadTokenURL,
1188
+ method: 'GET',
1189
+ });
1190
+ const data = res.data;
1191
+ const token = data.uptoken;
1192
+ if (token && token.length > 0) {
1193
+ this.config.qiniuUploadToken = token;
1194
+ }
1195
+ return token || '';
1196
+ }
1197
+ async getQiniuPolicy(data) {
1198
+ return ShcpApiSdk.request({
1199
+ url: `/api/blade-resource/oss/endpoint/uptoken?tenantId=${data.tenantId}&fileNames=${data.fileNames}`,
1200
+ method: 'POST',
1201
+ });
1202
+ }
1203
+ }
1204
+ const QiniuUploaderApi = new _QiniuUploaderApi();
1205
+
1206
+ class FileApi {
1207
+ static async uploadFileQiniu(file) {
1208
+ if (Array.isArray(file)) {
1209
+ return await Promise.all(file.map(async (item) => await FileApi.upload_file(item)));
1210
+ }
1211
+ else {
1212
+ return await FileApi.upload_file(file);
1213
+ }
1214
+ }
1215
+ static async upload_file(file) {
1216
+ console.log(" upload_file file=", file);
1217
+ file.url.split("/");
1218
+ const suffix = (file.name || file.path || file.cloudPath).split(".")[1];
1219
+ return await QiniuUploaderApi.upload(file.url, suffix);
1220
+ }
1221
+ }
1222
+
1028
1223
  class CommonRightApi {
1029
- // 获取权益列表
1030
- // URL: /api/shcp-healthcare/${ShcpApiSdk.getApiSuffix()}/right/list
1224
+ /**
1225
+ * 获取权益列表
1226
+ * URL: /api/shcp-healthcare/${ShcpApiSdk.getApiSuffix()}/right/list
1227
+ */
1031
1228
  static getRightList(data) {
1032
1229
  return ShcpApiSdk.request({
1033
1230
  url: `/api/shcp-healthcare/${ShcpApiSdk.getApiSuffix()}/right/list`,
@@ -1035,8 +1232,10 @@ class CommonRightApi {
1035
1232
  data,
1036
1233
  });
1037
1234
  }
1038
- // 服务流程分页查询
1039
- // URL: /api/shcp-healthcare/${ShcpApiSdk.getApiSuffix()}/serviceFlow/page
1235
+ /**
1236
+ * 服务流程分页查询
1237
+ * URL: /api/shcp-healthcare/${ShcpApiSdk.getApiSuffix()}/serviceFlow/page
1238
+ */
1040
1239
  static flowPage(data) {
1041
1240
  data.detailMode = true;
1042
1241
  return ShcpApiSdk.request({
@@ -1049,8 +1248,10 @@ class CommonRightApi {
1049
1248
  },
1050
1249
  });
1051
1250
  }
1052
- // 服务任务分页查询
1053
- // URL: /api/shcp-healthcare/${ShcpApiSdk.getApiSuffix()}/serviceTask/page
1251
+ /**
1252
+ * 服务任务分页查询
1253
+ * URL: /api/shcp-healthcare/${ShcpApiSdk.getApiSuffix()}/serviceTask/page
1254
+ */
1054
1255
  static taskPage(data) {
1055
1256
  data.detailMode = true;
1056
1257
  return ShcpApiSdk.request({
@@ -1063,8 +1264,10 @@ class CommonRightApi {
1063
1264
  },
1064
1265
  });
1065
1266
  }
1066
- //服务流程.列表查询
1067
- // URL: /api/shcp-healthcare/${ShcpApiSdk.getApiSuffix()}/serviceFlow/list
1267
+ /**
1268
+ * 服务流程.列表查询
1269
+ * URL: /api/shcp-healthcare/${ShcpApiSdk.getApiSuffix()}/serviceFlow/list
1270
+ */
1068
1271
  static listServiceFlow(query) {
1069
1272
  return ShcpApiSdk.request({
1070
1273
  url: `/api/shcp-healthcare/${ShcpApiSdk.getApiSuffix()}/serviceFlow/list`,
@@ -1072,8 +1275,10 @@ class CommonRightApi {
1072
1275
  data: query,
1073
1276
  });
1074
1277
  }
1075
- // 服务流程配置详情
1076
- // URL: /api/shcp-healthcare/${ShcpApiSdk.getApiSuffix()}/serviceFlow/config/detail
1278
+ /**
1279
+ * 服务流程配置详情
1280
+ * URL: /api/shcp-healthcare/${ShcpApiSdk.getApiSuffix()}/serviceFlow/config/detail
1281
+ */
1077
1282
  static detailServiceFlowConfig(flowId) {
1078
1283
  return ShcpApiSdk.request({
1079
1284
  url: `/api/shcp-healthcare/${ShcpApiSdk.getApiSuffix()}/serviceFlow/config/detail`,
@@ -1081,8 +1286,10 @@ class CommonRightApi {
1081
1286
  params: { flowId },
1082
1287
  });
1083
1288
  }
1084
- // 服务任务用户分页查询
1085
- // URL: /api/shcp-healthcare/${ShcpApiSdk.getApiSuffix()}/serviceTask/user/page
1289
+ /**
1290
+ * 服务任务用户分页查询
1291
+ * URL: /api/shcp-healthcare/${ShcpApiSdk.getApiSuffix()}/serviceTask/user/page
1292
+ */
1086
1293
  static pageServiceTaskUser(data) {
1087
1294
  return ShcpApiSdk.request({
1088
1295
  url: `/api/shcp-healthcare/${ShcpApiSdk.getApiSuffix()}/serviceTask/user/page`,
@@ -1137,8 +1344,10 @@ class CommonRightApi {
1137
1344
  data,
1138
1345
  });
1139
1346
  }
1140
- // 通用任务启动
1141
- // URL: /api/shcp-healthcare/${ShcpApiSdk.getApiSuffix()}/${serviceTypeEnName}/start
1347
+ /**
1348
+ * 通用任务启动
1349
+ * URL: /api/shcp-healthcare/${ShcpApiSdk.getApiSuffix()}/${serviceTypeEnName}/start
1350
+ */
1142
1351
  static commonTaskStart(serviceTypeEnName, data) {
1143
1352
  return ShcpApiSdk.request({
1144
1353
  url: `/api/shcp-healthcare/${ShcpApiSdk.getApiSuffix()}/${serviceTypeEnName}/start`,
@@ -1215,8 +1424,10 @@ class CommonRightApi {
1215
1424
  }
1216
1425
 
1217
1426
  class ConsumerApi {
1218
- // 获取医生列表
1219
- // URL: /api/shcp-consumer/${ShcpApiSdk.getApiSuffix()}/consumerRight/listDoctor
1427
+ /**
1428
+ * 获取医生列表
1429
+ * URL: /api/shcp-consumer/${ShcpApiSdk.getApiSuffix()}/consumerRight/listDoctor
1430
+ */
1220
1431
  static getDoctorList(data) {
1221
1432
  return ShcpApiSdk.request({
1222
1433
  url: `/api/shcp-consumer/${ShcpApiSdk.getApiSuffix()}/consumerRight/listDoctor`,
@@ -1224,8 +1435,10 @@ class ConsumerApi {
1224
1435
  data,
1225
1436
  });
1226
1437
  }
1227
- // 获取成员分页
1228
- // URL: /api/shcp-consumer/${ShcpApiSdk.getApiSuffix()}/consumer/group/member/page
1438
+ /**
1439
+ * 获取成员分页
1440
+ * URL: /api/shcp-consumer/${ShcpApiSdk.getApiSuffix()}/consumer/group/member/page
1441
+ */
1229
1442
  static getMemberPage(data) {
1230
1443
  return ShcpApiSdk.request({
1231
1444
  url: `/api/shcp-consumer/${ShcpApiSdk.getApiSuffix()}/consumer/group/member/page`,
@@ -1234,8 +1447,10 @@ class ConsumerApi {
1234
1447
  params: { current: data.current, size: data.size },
1235
1448
  });
1236
1449
  }
1237
- // 批量新增
1238
- // URL: /api/shcp-consumer/${ShcpApiSdk.getApiSuffix()}/consumer/group/member/create
1450
+ /**
1451
+ * 批量新增
1452
+ * URL: /api/shcp-consumer/${ShcpApiSdk.getApiSuffix()}/consumer/group/member/create
1453
+ */
1239
1454
  static batchCreateMember(data) {
1240
1455
  return ShcpApiSdk.request({
1241
1456
  url: `/api/shcp-consumer/${ShcpApiSdk.getApiSuffix()}/consumer/group/member/create`,
@@ -1243,8 +1458,10 @@ class ConsumerApi {
1243
1458
  data,
1244
1459
  });
1245
1460
  }
1246
- // 列表查询成员
1247
- // URL: /api/shcp-consumer/${ShcpApiSdk.getApiSuffix()}/consumer/group/member/list
1461
+ /**
1462
+ * 列表查询成员
1463
+ * URL: /api/shcp-consumer/${ShcpApiSdk.getApiSuffix()}/consumer/group/member/list
1464
+ */
1248
1465
  static listMember(data) {
1249
1466
  return ShcpApiSdk.request({
1250
1467
  url: `/api/shcp-consumer/${ShcpApiSdk.getApiSuffix()}/consumer/group/member/list`,
@@ -1252,8 +1469,10 @@ class ConsumerApi {
1252
1469
  data,
1253
1470
  });
1254
1471
  }
1255
- // 更新成员
1256
- // URL: /api/shcp-consumer/${ShcpApiSdk.getApiSuffix()}/consumer/group/member/update
1472
+ /**
1473
+ * 更新成员
1474
+ * URL: /api/shcp-consumer/${ShcpApiSdk.getApiSuffix()}/consumer/group/member/update
1475
+ */
1257
1476
  static updateMember(data) {
1258
1477
  return ShcpApiSdk.request({
1259
1478
  url: `/api/shcp-consumer/${ShcpApiSdk.getApiSuffix()}/consumer/group/member/update`,
@@ -1261,8 +1480,10 @@ class ConsumerApi {
1261
1480
  data,
1262
1481
  });
1263
1482
  }
1264
- // 获取组详情
1265
- // URL: /api/shcp-consumer/${ShcpApiSdk.getApiSuffix()}/consumer/group/detail
1483
+ /**
1484
+ * 获取组详情
1485
+ * URL: /api/shcp-consumer/${ShcpApiSdk.getApiSuffix()}/consumer/group/detail
1486
+ */
1266
1487
  static getGroupDetail(id) {
1267
1488
  return ShcpApiSdk.request({
1268
1489
  url: `/api/shcp-consumer/${ShcpApiSdk.getApiSuffix()}/consumer/group/detail`,
@@ -1270,8 +1491,10 @@ class ConsumerApi {
1270
1491
  data: { id },
1271
1492
  });
1272
1493
  }
1273
- // 获取组分页
1274
- // URL: /api/shcp-consumer/${ShcpApiSdk.getApiSuffix()}/consumer/group/page
1494
+ /**
1495
+ * 获取组分页
1496
+ * URL: /api/shcp-consumer/${ShcpApiSdk.getApiSuffix()}/consumer/group/page
1497
+ */
1275
1498
  static getGroupPage(data) {
1276
1499
  return ShcpApiSdk.request({
1277
1500
  url: `/api/shcp-consumer/${ShcpApiSdk.getApiSuffix()}/consumer/group/page`,
@@ -1280,8 +1503,10 @@ class ConsumerApi {
1280
1503
  params: { current: data.current, size: data.size },
1281
1504
  });
1282
1505
  }
1283
- // 根据ID列表查询
1284
- // URL: /api/shcp-consumer/${ShcpApiSdk.getApiSuffix()}/consumer/group/listByIds
1506
+ /**
1507
+ * 根据ID列表查询
1508
+ * URL: /api/shcp-consumer/${ShcpApiSdk.getApiSuffix()}/consumer/group/listByIds
1509
+ */
1285
1510
  static getListByIds(data) {
1286
1511
  return ShcpApiSdk.request({
1287
1512
  url: `/api/shcp-consumer/${ShcpApiSdk.getApiSuffix()}/consumer/group/listByIds`,
@@ -1289,8 +1514,10 @@ class ConsumerApi {
1289
1514
  data,
1290
1515
  });
1291
1516
  }
1292
- // 获取树形结构
1293
- // URL: /api/shcp-consumer/${ShcpApiSdk.getApiSuffix()}/consumer/group/tree
1517
+ /**
1518
+ * 获取树形结构
1519
+ * URL: /api/shcp-consumer/${ShcpApiSdk.getApiSuffix()}/consumer/group/tree
1520
+ */
1294
1521
  static getTree(data) {
1295
1522
  return ShcpApiSdk.request({
1296
1523
  url: `/api/shcp-consumer/${ShcpApiSdk.getApiSuffix()}/consumer/group/tree`,
@@ -1298,8 +1525,10 @@ class ConsumerApi {
1298
1525
  params: { id: data.rootId },
1299
1526
  });
1300
1527
  }
1301
- // 更新组
1302
- // URL: /api/shcp-consumer/${ShcpApiSdk.getApiSuffix()}/consumer/group/update
1528
+ /**
1529
+ * 更新组
1530
+ * URL: /api/shcp-consumer/${ShcpApiSdk.getApiSuffix()}/consumer/group/update
1531
+ */
1303
1532
  static updateGroup(data) {
1304
1533
  return ShcpApiSdk.request({
1305
1534
  url: `/api/shcp-consumer/${ShcpApiSdk.getApiSuffix()}/consumer/group/update`,
@@ -1307,8 +1536,10 @@ class ConsumerApi {
1307
1536
  data,
1308
1537
  });
1309
1538
  }
1310
- // 创建组
1311
- // URL: /api/shcp-consumer/${ShcpApiSdk.getApiSuffix()}/consumer/group/create
1539
+ /**
1540
+ * 创建组
1541
+ * URL: /api/shcp-consumer/${ShcpApiSdk.getApiSuffix()}/consumer/group/create
1542
+ */
1312
1543
  static createGroup(data) {
1313
1544
  return ShcpApiSdk.request({
1314
1545
  url: `/api/shcp-consumer/${ShcpApiSdk.getApiSuffix()}/consumer/group/create`,
@@ -1316,8 +1547,10 @@ class ConsumerApi {
1316
1547
  data,
1317
1548
  });
1318
1549
  }
1319
- // 删除组
1320
- // URL: /api/shcp-consumer/${ShcpApiSdk.getApiSuffix()}/consumer/group/delete
1550
+ /**
1551
+ * 删除组
1552
+ * URL: /api/shcp-consumer/${ShcpApiSdk.getApiSuffix()}/consumer/group/delete
1553
+ */
1321
1554
  static deleteGroup(data) {
1322
1555
  return ShcpApiSdk.request({
1323
1556
  url: `/api/shcp-consumer/${ShcpApiSdk.getApiSuffix()}/consumer/group/delete`,
@@ -1325,8 +1558,10 @@ class ConsumerApi {
1325
1558
  data,
1326
1559
  });
1327
1560
  }
1328
- // 更新消费者
1329
- // URL: /api/shcp-consumer/${ShcpApiSdk.getApiSuffix()}/consumer/update
1561
+ /**
1562
+ * 更新消费者
1563
+ * URL: /api/shcp-consumer/${ShcpApiSdk.getApiSuffix()}/consumer/update
1564
+ */
1330
1565
  static update(data) {
1331
1566
  return ShcpApiSdk.request({
1332
1567
  url: `/api/shcp-consumer/${ShcpApiSdk.getApiSuffix()}/consumer/update`,
@@ -1334,8 +1569,10 @@ class ConsumerApi {
1334
1569
  data,
1335
1570
  });
1336
1571
  }
1337
- // 创建消费者
1338
- // URL: /api/shcp-consumer/${ShcpApiSdk.getApiSuffix()}/consumer/create
1572
+ /**
1573
+ * 创建消费者
1574
+ * URL: /api/shcp-consumer/${ShcpApiSdk.getApiSuffix()}/consumer/create
1575
+ */
1339
1576
  static create(data) {
1340
1577
  return ShcpApiSdk.request({
1341
1578
  url: `/api/shcp-consumer/${ShcpApiSdk.getApiSuffix()}/consumer/create`,
@@ -1348,8 +1585,10 @@ class ConsumerApi {
1348
1585
  },
1349
1586
  });
1350
1587
  }
1351
- // 查询消费者列表
1352
- // URL: /api/shcp-consumer/${ShcpApiSdk.getApiSuffix()}/consumer/list
1588
+ /**
1589
+ * 查询消费者列表
1590
+ * URL: /api/shcp-consumer/${ShcpApiSdk.getApiSuffix()}/consumer/list
1591
+ */
1353
1592
  static list(data) {
1354
1593
  return ShcpApiSdk.request({
1355
1594
  url: `/api/shcp-consumer/${ShcpApiSdk.getApiSuffix()}/consumer/list`,
@@ -1357,8 +1596,10 @@ class ConsumerApi {
1357
1596
  data,
1358
1597
  });
1359
1598
  }
1360
- // 查询单个消费者
1361
- // URL: /api/shcp-consumer/${ShcpApiSdk.getApiSuffix()}/consumer/get
1599
+ /**
1600
+ * 查询单个消费者
1601
+ * URL: /api/shcp-consumer/${ShcpApiSdk.getApiSuffix()}/consumer/get
1602
+ */
1362
1603
  static get(data) {
1363
1604
  return ShcpApiSdk.request({
1364
1605
  url: `/api/shcp-consumer/${ShcpApiSdk.getApiSuffix()}/consumer/get`,
@@ -1366,8 +1607,10 @@ class ConsumerApi {
1366
1607
  data,
1367
1608
  });
1368
1609
  }
1369
- // 查询消费用户权益
1370
- // URL: /api/shcp-consumer/${ShcpApiSdk.getApiSuffix()}/consumerRight/detail
1610
+ /**
1611
+ * 查询消费用户权益
1612
+ * URL: /api/shcp-consumer/${ShcpApiSdk.getApiSuffix()}/consumerRight/detail
1613
+ */
1371
1614
  static getRightDetail(id) {
1372
1615
  return ShcpApiSdk.request({
1373
1616
  url: `/api/shcp-consumer/${ShcpApiSdk.getApiSuffix()}/consumerRight/detail`,
@@ -1375,8 +1618,10 @@ class ConsumerApi {
1375
1618
  params: { id },
1376
1619
  });
1377
1620
  }
1378
- // 查询消费用户权益
1379
- // URL: /api/shcp-consumer/${ShcpApiSdk.getApiSuffix()}/consumerRight/get
1621
+ /**
1622
+ * 查询消费用户权益
1623
+ * URL: /api/shcp-consumer/${ShcpApiSdk.getApiSuffix()}/consumerRight/get
1624
+ */
1380
1625
  static getRight(data) {
1381
1626
  return ShcpApiSdk.request({
1382
1627
  url: `/api/shcp-consumer/${ShcpApiSdk.getApiSuffix()}/consumerRight/get`,
@@ -1384,8 +1629,10 @@ class ConsumerApi {
1384
1629
  data,
1385
1630
  });
1386
1631
  }
1387
- // 查询消费用户权益
1388
- // URL: /api/shcp-consumer/${ShcpApiSdk.getApiSuffix()}/consumerRight/list
1632
+ /**
1633
+ * 查询消费用户权益
1634
+ * URL: /api/shcp-consumer/${ShcpApiSdk.getApiSuffix()}/consumerRight/list
1635
+ */
1389
1636
  static getRightList(data) {
1390
1637
  return ShcpApiSdk.request({
1391
1638
  url: `/api/shcp-consumer/${ShcpApiSdk.getApiSuffix()}/consumerRight/list`,
@@ -1393,8 +1640,10 @@ class ConsumerApi {
1393
1640
  data,
1394
1641
  });
1395
1642
  }
1396
- // 查询消费用户权益
1397
- // URL: /api/shcp-consumer/${ShcpApiSdk.getApiSuffix()}/consumerRight/page
1643
+ /**
1644
+ * 查询消费用户权益
1645
+ * URL: /api/shcp-consumer/${ShcpApiSdk.getApiSuffix()}/consumerRight/page
1646
+ */
1398
1647
  static getRightPage(data) {
1399
1648
  return ShcpApiSdk.request({
1400
1649
  url: `/api/shcp-consumer/${ShcpApiSdk.getApiSuffix()}/consumerRight/page`,
@@ -1406,8 +1655,10 @@ class ConsumerApi {
1406
1655
  },
1407
1656
  });
1408
1657
  }
1409
- // 创建消费用户权益
1410
- // URL: /api/shcp-consumer/${ShcpApiSdk.getApiSuffix()}/consumerRight/create
1658
+ /**
1659
+ * 创建消费用户权益
1660
+ * URL: /api/shcp-consumer/${ShcpApiSdk.getApiSuffix()}/consumerRight/create
1661
+ */
1411
1662
  static createRight(data) {
1412
1663
  return ShcpApiSdk.request({
1413
1664
  url: `/api/shcp-consumer/${ShcpApiSdk.getApiSuffix()}/consumerRight/create`,
@@ -1415,8 +1666,10 @@ class ConsumerApi {
1415
1666
  data,
1416
1667
  });
1417
1668
  }
1418
- // 批量创建消费用户权益
1419
- // URL: /api/shcp-consumer/${ShcpApiSdk.getApiSuffix()}/consumerRight/batchCreate
1669
+ /**
1670
+ * 批量创建消费用户权益
1671
+ * URL: /api/shcp-consumer/${ShcpApiSdk.getApiSuffix()}/consumerRight/batchCreate
1672
+ */
1420
1673
  static batchCreateRight(data) {
1421
1674
  return ShcpApiSdk.request({
1422
1675
  url: `/api/shcp-consumer/${ShcpApiSdk.getApiSuffix()}/consumerRight/batchCreate`,
@@ -1424,8 +1677,10 @@ class ConsumerApi {
1424
1677
  data,
1425
1678
  });
1426
1679
  }
1427
- // 删除消费用户权益
1428
- // URL: /api/shcp-consumer/${ShcpApiSdk.getApiSuffix()}/consumerRight/delete
1680
+ /**
1681
+ * 删除消费用户权益
1682
+ * URL: /api/shcp-consumer/${ShcpApiSdk.getApiSuffix()}/consumerRight/delete
1683
+ */
1429
1684
  static deleteRight(data) {
1430
1685
  return ShcpApiSdk.request({
1431
1686
  url: `/api/shcp-consumer/${ShcpApiSdk.getApiSuffix()}/consumerRight/delete`,
@@ -1446,8 +1701,10 @@ const crudConsumerApi = {
1446
1701
  };
1447
1702
 
1448
1703
  class ConsumerBindApi {
1449
- // 更改
1450
- // URL: /api/shcp-consumer/consumerBind/update
1704
+ /**
1705
+ * 更改
1706
+ * URL: /api/shcp-consumer/consumerBind/update
1707
+ */
1451
1708
  static update(data) {
1452
1709
  return ShcpApiSdk.request({
1453
1710
  url: '/api/shcp-consumer/consumerBind/update',
@@ -1455,8 +1712,10 @@ class ConsumerBindApi {
1455
1712
  data,
1456
1713
  });
1457
1714
  }
1458
- // 新增
1459
- // URL: /api/shcp-consumer/consumerBind/bind
1715
+ /**
1716
+ * 新增
1717
+ * URL: /api/shcp-consumer/consumerBind/bind
1718
+ */
1460
1719
  static create(data) {
1461
1720
  return ShcpApiSdk.request({
1462
1721
  url: '/api/shcp-consumer/consumerBind/bind',
@@ -1464,8 +1723,10 @@ class ConsumerBindApi {
1464
1723
  data,
1465
1724
  });
1466
1725
  }
1467
- // 删除
1468
- // URL: /api/shcp-consumer/consumerBind/delete
1726
+ /**
1727
+ * 删除
1728
+ * URL: /api/shcp-consumer/consumerBind/delete
1729
+ */
1469
1730
  static delete(data) {
1470
1731
  return ShcpApiSdk.request({
1471
1732
  url: '/api/shcp-consumer/consumerBind/delete',
@@ -1473,8 +1734,10 @@ class ConsumerBindApi {
1473
1734
  data,
1474
1735
  });
1475
1736
  }
1476
- // 设备用户绑定的消费用户列表
1477
- // URL: /api/shcp-consumer/consumerBind/list
1737
+ /**
1738
+ * 设备用户绑定的消费用户列表
1739
+ * URL: /api/shcp-consumer/consumerBind/list
1740
+ */
1478
1741
  static getList(params) {
1479
1742
  return ShcpApiSdk.request({
1480
1743
  url: '/api/shcp-consumer/consumerBind/list',
@@ -1482,8 +1745,10 @@ class ConsumerBindApi {
1482
1745
  params,
1483
1746
  });
1484
1747
  }
1485
- // 发送绑定用户验证码
1486
- // URL: /api/shcp-consumer/consumerBind/sendSMSCode
1748
+ /**
1749
+ * 发送绑定用户验证码
1750
+ * URL: /api/shcp-consumer/consumerBind/sendSMSCode
1751
+ */
1487
1752
  static sendSMSCode(params) {
1488
1753
  return ShcpApiSdk.request({
1489
1754
  url: '/api/shcp-consumer/consumerBind/sendSMSCode',
@@ -1491,8 +1756,10 @@ class ConsumerBindApi {
1491
1756
  params,
1492
1757
  });
1493
1758
  }
1494
- // 验证码校验
1495
- // URL: /api/shcp-consumer/consumerBind/verifySMSCode
1759
+ /**
1760
+ * 验证码校验
1761
+ * URL: /api/shcp-consumer/consumerBind/verifySMSCode
1762
+ */
1496
1763
  static verifySMSCode(params) {
1497
1764
  return ShcpApiSdk.request({
1498
1765
  url: '/api/shcp-consumer/consumerBind/verifySMSCode',
@@ -1500,8 +1767,10 @@ class ConsumerBindApi {
1500
1767
  params,
1501
1768
  });
1502
1769
  }
1503
- // 激活
1504
- // URL: /api/shcp-consumer/consumerBind/active
1770
+ /**
1771
+ * 激活
1772
+ * URL: /api/shcp-consumer/consumerBind/active
1773
+ */
1505
1774
  static active(data) {
1506
1775
  return ShcpApiSdk.request({
1507
1776
  url: '/api/shcp-consumer/consumerBind/active',
@@ -1509,8 +1778,10 @@ class ConsumerBindApi {
1509
1778
  data,
1510
1779
  });
1511
1780
  }
1512
- // 单个查询
1513
- // URL: /api/shcp-consumer/consumerBind/get
1781
+ /**
1782
+ * 单个查询
1783
+ * URL: /api/shcp-consumer/consumerBind/get
1784
+ */
1514
1785
  static get(params) {
1515
1786
  return ShcpApiSdk.request({
1516
1787
  url: '/api/shcp-consumer/consumerBind/get',
@@ -1568,8 +1839,10 @@ class ConsumerDeviceApi {
1568
1839
  }
1569
1840
 
1570
1841
  class ConsumerFavoriteApi {
1571
- // 消费用户收藏列表
1572
- // URL: /api/shcp-consumer/${ShcpApiSdk.getApiSuffix()}/consumer/favorite/page
1842
+ /**
1843
+ * 消费用户收藏列表
1844
+ * URL: /api/shcp-consumer/${ShcpApiSdk.getApiSuffix()}/consumer/favorite/page
1845
+ */
1573
1846
  static getPage(data) {
1574
1847
  return ShcpApiSdk.request({
1575
1848
  url: `/api/shcp-consumer/${ShcpApiSdk.getApiSuffix()}/consumer/favorite/page`,
@@ -1581,8 +1854,10 @@ class ConsumerFavoriteApi {
1581
1854
  },
1582
1855
  });
1583
1856
  }
1584
- // 创建消费用户收藏
1585
- // URL: /api/shcp-consumer/${ShcpApiSdk.getApiSuffix()}/consumer/favorite/create
1857
+ /**
1858
+ * 创建消费用户收藏
1859
+ * URL: /api/shcp-consumer/${ShcpApiSdk.getApiSuffix()}/consumer/favorite/create
1860
+ */
1586
1861
  static create(data) {
1587
1862
  return ShcpApiSdk.request({
1588
1863
  url: `/api/shcp-consumer/${ShcpApiSdk.getApiSuffix()}/consumer/favorite/create`,
@@ -1590,8 +1865,10 @@ class ConsumerFavoriteApi {
1590
1865
  data,
1591
1866
  });
1592
1867
  }
1593
- // 检查是否收藏
1594
- // URL: /api/shcp-consumer/${ShcpApiSdk.getApiSuffix()}/consumer/favorite/checkFavorite
1868
+ /**
1869
+ * 检查是否收藏
1870
+ * URL: /api/shcp-consumer/${ShcpApiSdk.getApiSuffix()}/consumer/favorite/checkFavorite
1871
+ */
1595
1872
  static checkFavorite(params) {
1596
1873
  return ShcpApiSdk.request({
1597
1874
  url: `/api/shcp-consumer/${ShcpApiSdk.getApiSuffix()}/consumer/favorite/checkFavorite`,
@@ -1599,8 +1876,10 @@ class ConsumerFavoriteApi {
1599
1876
  params,
1600
1877
  });
1601
1878
  }
1602
- // 取消收藏
1603
- // URL: /api/shcp-consumer/${ShcpApiSdk.getApiSuffix()}/consumer/favorite/delete
1879
+ /**
1880
+ * 取消收藏
1881
+ * URL: /api/shcp-consumer/${ShcpApiSdk.getApiSuffix()}/consumer/favorite/delete
1882
+ */
1604
1883
  static delete(data) {
1605
1884
  return ShcpApiSdk.request({
1606
1885
  url: `/api/shcp-consumer/${ShcpApiSdk.getApiSuffix()}/consumer/favorite/delete`,
@@ -1704,8 +1983,10 @@ class DeviceUserApi {
1704
1983
  }
1705
1984
  }
1706
1985
 
1707
- // 服务流程.发起
1708
- // URL: /api/shcp-healthcare/${ShcpApiSdk.getApiSuffix()}/diseaseCare/start
1986
+ /**
1987
+ * 服务流程.发起
1988
+ * URL: /api/shcp-healthcare/${ShcpApiSdk.getApiSuffix()}/diseaseCare/start
1989
+ */
1709
1990
  function start$1(data) {
1710
1991
  return ShcpApiSdk.request({
1711
1992
  url: `/api/shcp-healthcare/${ShcpApiSdk.getApiSuffix()}/diseaseCare/start`,
@@ -1713,8 +1994,10 @@ function start$1(data) {
1713
1994
  data,
1714
1995
  });
1715
1996
  }
1716
- // 服务流程.领取
1717
- // URL: /api/shcp-healthcare/${ShcpApiSdk.getApiSuffix()}/diseaseCare/claim
1997
+ /**
1998
+ * 服务流程.领取
1999
+ * URL: /api/shcp-healthcare/${ShcpApiSdk.getApiSuffix()}/diseaseCare/claim
2000
+ */
1718
2001
  function claim$1(data) {
1719
2002
  return ShcpApiSdk.request({
1720
2003
  url: `/api/shcp-healthcare/${ShcpApiSdk.getApiSuffix()}/diseaseCare/claim`,
@@ -1722,8 +2005,10 @@ function claim$1(data) {
1722
2005
  data,
1723
2006
  });
1724
2007
  }
1725
- // 服务流程.终止
1726
- // URL: /api/shcp-healthcare/${ShcpApiSdk.getApiSuffix()}/diseaseCare/terminate
2008
+ /**
2009
+ * 服务流程.终止
2010
+ * URL: /api/shcp-healthcare/${ShcpApiSdk.getApiSuffix()}/diseaseCare/terminate
2011
+ */
1727
2012
  function terminate$1(data) {
1728
2013
  return ShcpApiSdk.request({
1729
2014
  url: `/api/shcp-healthcare/${ShcpApiSdk.getApiSuffix()}/diseaseCare/terminate`,
@@ -1731,8 +2016,10 @@ function terminate$1(data) {
1731
2016
  data,
1732
2017
  });
1733
2018
  }
1734
- // 服务流程.标记用户
1735
- // URL: /api/shcp-healthcare/${ShcpApiSdk.getApiSuffix()}/diseaseCare/consumerMark
2019
+ /**
2020
+ * 服务流程.标记用户
2021
+ * URL: /api/shcp-healthcare/${ShcpApiSdk.getApiSuffix()}/diseaseCare/consumerMark
2022
+ */
1736
2023
  function consumerMark$1(data) {
1737
2024
  return ShcpApiSdk.request({
1738
2025
  url: `/api/shcp-healthcare/${ShcpApiSdk.getApiSuffix()}/diseaseCare/consumerMark`,
@@ -1740,8 +2027,10 @@ function consumerMark$1(data) {
1740
2027
  data,
1741
2028
  });
1742
2029
  }
1743
- // 服务流程.取消标记用户
1744
- // URL: /api/shcp-healthcare/${ShcpApiSdk.getApiSuffix()}/diseaseCare/consumerUnmark
2030
+ /**
2031
+ * 服务流程.取消标记用户
2032
+ * URL: /api/shcp-healthcare/${ShcpApiSdk.getApiSuffix()}/diseaseCare/consumerUnmark
2033
+ */
1745
2034
  function deleteConsumerMark(data) {
1746
2035
  return ShcpApiSdk.request({
1747
2036
  url: `/api/shcp-healthcare/${ShcpApiSdk.getApiSuffix()}/diseaseCare/consumerUnmark`,
@@ -1749,8 +2038,10 @@ function deleteConsumerMark(data) {
1749
2038
  data,
1750
2039
  });
1751
2040
  }
1752
- // 服务流程.联系用户
1753
- // URL: /api/shcp-healthcare/${ShcpApiSdk.getApiSuffix()}/diseaseCare/consumerContact
2041
+ /**
2042
+ * 服务流程.联系用户
2043
+ * URL: /api/shcp-healthcare/${ShcpApiSdk.getApiSuffix()}/diseaseCare/consumerContact
2044
+ */
1754
2045
  function consumerContact$1(data) {
1755
2046
  return ShcpApiSdk.request({
1756
2047
  url: `/api/shcp-healthcare/${ShcpApiSdk.getApiSuffix()}/diseaseCare/consumerContact`,
@@ -1758,8 +2049,10 @@ function consumerContact$1(data) {
1758
2049
  data,
1759
2050
  });
1760
2051
  }
1761
- // 流程任务.获取
1762
- // URL: /api/shcp-healthcare/${ShcpApiSdk.getApiSuffix()}/diseaseCare/task/fetch
2052
+ /**
2053
+ * 流程任务.获取
2054
+ * URL: /api/shcp-healthcare/${ShcpApiSdk.getApiSuffix()}/diseaseCare/task/fetch
2055
+ */
1763
2056
  function taskFetch$1(data) {
1764
2057
  return ShcpApiSdk.request({
1765
2058
  url: `/api/shcp-healthcare/${ShcpApiSdk.getApiSuffix()}/diseaseCare/task/fetch`,
@@ -1767,8 +2060,10 @@ function taskFetch$1(data) {
1767
2060
  data,
1768
2061
  });
1769
2062
  }
1770
- // 流程任务.提交
1771
- // URL: /api/shcp-healthcare/${ShcpApiSdk.getApiSuffix()}/diseaseCare/task/submit
2063
+ /**
2064
+ * 流程任务.提交
2065
+ * URL: /api/shcp-healthcare/${ShcpApiSdk.getApiSuffix()}/diseaseCare/task/submit
2066
+ */
1772
2067
  function taskSubmit$1(data) {
1773
2068
  return ShcpApiSdk.request({
1774
2069
  url: `/api/shcp-healthcare/${ShcpApiSdk.getApiSuffix()}/diseaseCare/task/submit`,
@@ -1776,8 +2071,10 @@ function taskSubmit$1(data) {
1776
2071
  data,
1777
2072
  });
1778
2073
  }
1779
- // 流程任务.取消
1780
- // URL: /api/shcp-healthcare/${ShcpApiSdk.getApiSuffix()}/diseaseCare/task/cancel
2074
+ /**
2075
+ * 流程任务.取消
2076
+ * URL: /api/shcp-healthcare/${ShcpApiSdk.getApiSuffix()}/diseaseCare/task/cancel
2077
+ */
1781
2078
  function taskCancel$1(data) {
1782
2079
  return ShcpApiSdk.request({
1783
2080
  url: `/api/shcp-healthcare/${ShcpApiSdk.getApiSuffix()}/diseaseCare/task/cancel`,
@@ -1785,8 +2082,10 @@ function taskCancel$1(data) {
1785
2082
  data,
1786
2083
  });
1787
2084
  }
1788
- // 流程任务.保存
1789
- // URL: /api/shcp-healthcare/${ShcpApiSdk.getApiSuffix()}/diseaseCare/task/save
2085
+ /**
2086
+ * 流程任务.保存
2087
+ * URL: /api/shcp-healthcare/${ShcpApiSdk.getApiSuffix()}/diseaseCare/task/save
2088
+ */
1790
2089
  function taskSave$1(data) {
1791
2090
  return ShcpApiSdk.request({
1792
2091
  url: `/api/shcp-healthcare/${ShcpApiSdk.getApiSuffix()}/diseaseCare/task/save`,
@@ -1841,8 +2140,10 @@ const diseaseExceptionOpApi = {
1841
2140
  };
1842
2141
 
1843
2142
  class HealthCommonApi {
1844
- // 服务流程.分页查询
1845
- // URL: /api/shcp-healthcare/${ShcpApiSdk.getApiSuffix()}/serviceFlow/page
2143
+ /**
2144
+ * 服务流程.分页查询
2145
+ * URL: /api/shcp-healthcare/${ShcpApiSdk.getApiSuffix()}/serviceFlow/page
2146
+ */
1846
2147
  static pageServiceFlow(data) {
1847
2148
  return ShcpApiSdk.request({
1848
2149
  url: `/api/shcp-healthcare/${ShcpApiSdk.getApiSuffix()}/serviceFlow/page`,
@@ -1854,8 +2155,10 @@ class HealthCommonApi {
1854
2155
  },
1855
2156
  });
1856
2157
  }
1857
- // 服务流程.统计, 用户所参与流程统计
1858
- // URL: /api/shcp-healthcare/${ShcpApiSdk.getApiSuffix()}/serviceFlow/statistics
2158
+ /**
2159
+ * 服务流程.统计, 用户所参与流程统计
2160
+ * URL: /api/shcp-healthcare/${ShcpApiSdk.getApiSuffix()}/serviceFlow/statistics
2161
+ */
1859
2162
  static statsServiceFlow(data) {
1860
2163
  return ShcpApiSdk.request({
1861
2164
  url: `/api/shcp-healthcare/${ShcpApiSdk.getApiSuffix()}/serviceFlow/statistics`,
@@ -1863,8 +2166,10 @@ class HealthCommonApi {
1863
2166
  data,
1864
2167
  });
1865
2168
  }
1866
- // 服务任务的权益.列表查询, 列表查询
1867
- // URL: /api/shcp-healthcare/${ShcpApiSdk.getApiSuffix()}/serviceTask/right/list
2169
+ /**
2170
+ * 服务任务的权益.列表查询, 列表查询
2171
+ * URL: /api/shcp-healthcare/${ShcpApiSdk.getApiSuffix()}/serviceTask/right/list
2172
+ */
1868
2173
  static listServiceTaskRight(data) {
1869
2174
  return ShcpApiSdk.request({
1870
2175
  url: `/api/shcp-healthcare/${ShcpApiSdk.getApiSuffix()}/serviceTask/right/list`,
@@ -1872,8 +2177,10 @@ class HealthCommonApi {
1872
2177
  data,
1873
2178
  });
1874
2179
  }
1875
- // 服务任务.分页查询
1876
- // URL: /api/shcp-healthcare/${ShcpApiSdk.getApiSuffix()}/serviceTask/page
2180
+ /**
2181
+ * 服务任务.分页查询
2182
+ * URL: /api/shcp-healthcare/${ShcpApiSdk.getApiSuffix()}/serviceTask/page
2183
+ */
1877
2184
  static pageServiceTask(data) {
1878
2185
  return ShcpApiSdk.request({
1879
2186
  url: `/api/shcp-healthcare/${ShcpApiSdk.getApiSuffix()}/serviceTask/page`,
@@ -1885,8 +2192,10 @@ class HealthCommonApi {
1885
2192
  },
1886
2193
  });
1887
2194
  }
1888
- // 服务任务.单个查询(按ID)
1889
- // URL: /api/shcp-healthcare/${ShcpApiSdk.getApiSuffix()}/serviceTask/detail
2195
+ /**
2196
+ * 服务任务.单个查询(按ID)
2197
+ * URL: /api/shcp-healthcare/${ShcpApiSdk.getApiSuffix()}/serviceTask/detail
2198
+ */
1890
2199
  static detailServiceTask(id) {
1891
2200
  return ShcpApiSdk.request({
1892
2201
  url: `/api/shcp-healthcare/${ShcpApiSdk.getApiSuffix()}/serviceTask/detail`,
@@ -1894,8 +2203,10 @@ class HealthCommonApi {
1894
2203
  params: { id },
1895
2204
  });
1896
2205
  }
1897
- // 服务任务.单个查询(按条件)
1898
- // URL: /api/shcp-healthcare/${ShcpApiSdk.getApiSuffix()}/serviceTask/get
2206
+ /**
2207
+ * 服务任务.单个查询(按条件)
2208
+ * URL: /api/shcp-healthcare/${ShcpApiSdk.getApiSuffix()}/serviceTask/get
2209
+ */
1899
2210
  static getServiceTask(data) {
1900
2211
  return ShcpApiSdk.request({
1901
2212
  url: `/api/shcp-healthcare/${ShcpApiSdk.getApiSuffix()}/serviceTask/get`,
@@ -1903,8 +2214,10 @@ class HealthCommonApi {
1903
2214
  data,
1904
2215
  });
1905
2216
  }
1906
- // 服务任务.统计, 用户所参与任务统计
1907
- // URL: /api/shcp-healthcare/${ShcpApiSdk.getApiSuffix()}/serviceTask/statistics
2217
+ /**
2218
+ * 服务任务.统计, 用户所参与任务统计
2219
+ * URL: /api/shcp-healthcare/${ShcpApiSdk.getApiSuffix()}/serviceTask/statistics
2220
+ */
1908
2221
  static statsServiceTask(data) {
1909
2222
  return ShcpApiSdk.request({
1910
2223
  url: `/api/shcp-healthcare/${ShcpApiSdk.getApiSuffix()}/serviceTask/statistics`,
@@ -1912,8 +2225,10 @@ class HealthCommonApi {
1912
2225
  data,
1913
2226
  });
1914
2227
  }
1915
- // 健康指标趋势.列表查询
1916
- // URL: /api/shcp-healthcare/${ShcpApiSdk.getApiSuffix()}/healthMetricTrend/list
2228
+ /**
2229
+ * 健康指标趋势.列表查询
2230
+ * URL: /api/shcp-healthcare/${ShcpApiSdk.getApiSuffix()}/healthMetricTrend/list
2231
+ */
1917
2232
  static listMetricTrend(data) {
1918
2233
  return ShcpApiSdk.request({
1919
2234
  url: `/api/shcp-healthcare/${ShcpApiSdk.getApiSuffix()}/healthMetricTrend/list`,
@@ -1921,8 +2236,10 @@ class HealthCommonApi {
1921
2236
  data,
1922
2237
  });
1923
2238
  }
1924
- // 指标异常记录.分页查询, 任务维度
1925
- // URL: /api/shcp-healthcare/${ShcpApiSdk.getApiSuffix()}/metricException/page
2239
+ /**
2240
+ * 指标异常记录.分页查询, 任务维度
2241
+ * URL: /api/shcp-healthcare/${ShcpApiSdk.getApiSuffix()}/metricException/page
2242
+ */
1926
2243
  static metricExceptionPage(data) {
1927
2244
  return ShcpApiSdk.request({
1928
2245
  url: `/api/shcp-healthcare/${ShcpApiSdk.getApiSuffix()}/metricException/page`,
@@ -1934,8 +2251,10 @@ class HealthCommonApi {
1934
2251
  },
1935
2252
  });
1936
2253
  }
1937
- // 指标异常记录.用户分页查询, 用户维度
1938
- // URL: /api/shcp-healthcare/${ShcpApiSdk.getApiSuffix()}/metricException/user/page
2254
+ /**
2255
+ * 指标异常记录.用户分页查询, 用户维度
2256
+ * URL: /api/shcp-healthcare/${ShcpApiSdk.getApiSuffix()}/metricException/user/page
2257
+ */
1939
2258
  static metricExceptionUserPage(data) {
1940
2259
  return ShcpApiSdk.request({
1941
2260
  url: `/api/shcp-healthcare/${ShcpApiSdk.getApiSuffix()}/metricException/user/page`,
@@ -1950,8 +2269,10 @@ class HealthCommonApi {
1950
2269
  }
1951
2270
 
1952
2271
  class HealthMetricApi {
1953
- // 获取健康指标
1954
- // URL: /api/shcp-healthcare/${ShcpApiSdk.getApiSuffix()}/healthMetric/get
2272
+ /**
2273
+ * 获取健康指标
2274
+ * URL: /api/shcp-healthcare/${ShcpApiSdk.getApiSuffix()}/healthMetric/get
2275
+ */
1955
2276
  static getMetric(data) {
1956
2277
  return ShcpApiSdk.request({
1957
2278
  url: `/api/shcp-healthcare/${ShcpApiSdk.getApiSuffix()}/healthMetric/get`,
@@ -1959,8 +2280,10 @@ class HealthMetricApi {
1959
2280
  data,
1960
2281
  });
1961
2282
  }
1962
- // 获取健康指标列表
1963
- // URL: /api/shcp-healthcare/${ShcpApiSdk.getApiSuffix()}/healthMetric/list
2283
+ /**
2284
+ * 获取健康指标列表
2285
+ * URL: /api/shcp-healthcare/${ShcpApiSdk.getApiSuffix()}/healthMetric/list
2286
+ */
1964
2287
  static listMetric(data) {
1965
2288
  return ShcpApiSdk.request({
1966
2289
  url: `/api/shcp-healthcare/${ShcpApiSdk.getApiSuffix()}/healthMetric/list`,
@@ -1968,8 +2291,10 @@ class HealthMetricApi {
1968
2291
  data,
1969
2292
  });
1970
2293
  }
1971
- // 健康指标分页查询
1972
- // URL: /api/shcp-healthcare/${ShcpApiSdk.getApiSuffix()}/healthMetric/page
2294
+ /**
2295
+ * 健康指标分页查询
2296
+ * URL: /api/shcp-healthcare/${ShcpApiSdk.getApiSuffix()}/healthMetric/page
2297
+ */
1973
2298
  static pageMetric(data) {
1974
2299
  return ShcpApiSdk.request({
1975
2300
  url: `/api/shcp-healthcare/${ShcpApiSdk.getApiSuffix()}/healthMetric/page`,
@@ -1981,8 +2306,10 @@ class HealthMetricApi {
1981
2306
  },
1982
2307
  });
1983
2308
  }
1984
- // 健康指标趋势列表
1985
- // URL: /api/shcp-healthcare/${ShcpApiSdk.getApiSuffix()}/healthMetricTrend/list
2309
+ /**
2310
+ * 健康指标趋势列表
2311
+ * URL: /api/shcp-healthcare/${ShcpApiSdk.getApiSuffix()}/healthMetricTrend/list
2312
+ */
1986
2313
  static listTrend(data) {
1987
2314
  return ShcpApiSdk.request({
1988
2315
  url: `/api/shcp-healthcare/${ShcpApiSdk.getApiSuffix()}/healthMetricTrend/list`,
@@ -1990,8 +2317,10 @@ class HealthMetricApi {
1990
2317
  data,
1991
2318
  });
1992
2319
  }
1993
- // 健康指标日志列表
1994
- // URL: /api/shcp-healthcare/${ShcpApiSdk.getApiSuffix()}/healthMetricLog/list
2320
+ /**
2321
+ * 健康指标日志列表
2322
+ * URL: /api/shcp-healthcare/${ShcpApiSdk.getApiSuffix()}/healthMetricLog/list
2323
+ */
1995
2324
  static listLog(data) {
1996
2325
  return ShcpApiSdk.request({
1997
2326
  url: `/api/shcp-healthcare/${ShcpApiSdk.getApiSuffix()}/healthMetricLog/list`,
@@ -2002,8 +2331,10 @@ class HealthMetricApi {
2002
2331
  }
2003
2332
 
2004
2333
  class HealthProfileApi {
2005
- // 获取日记任务
2006
- // URL: /api/shcp-healthcare/${ShcpApiSdk.getApiSuffix()}/healthProfile/diaryTask/fetch
2334
+ /**
2335
+ * 获取日记任务
2336
+ * URL: /api/shcp-healthcare/${ShcpApiSdk.getApiSuffix()}/healthProfile/diaryTask/fetch
2337
+ */
2007
2338
  static fetchDiaryTask(data) {
2008
2339
  return ShcpApiSdk.request({
2009
2340
  url: `/api/shcp-healthcare/${ShcpApiSdk.getApiSuffix()}/healthProfile/diaryTask/fetch`,
@@ -2011,8 +2342,10 @@ class HealthProfileApi {
2011
2342
  data,
2012
2343
  });
2013
2344
  }
2014
- // 提交日记任务
2015
- // URL: /api/shcp-healthcare/${ShcpApiSdk.getApiSuffix()}/healthProfile/diaryTask/submit
2345
+ /**
2346
+ * 提交日记任务
2347
+ * URL: /api/shcp-healthcare/${ShcpApiSdk.getApiSuffix()}/healthProfile/diaryTask/submit
2348
+ */
2016
2349
  static submitDiaryTask(data) {
2017
2350
  return ShcpApiSdk.request({
2018
2351
  url: `/api/shcp-healthcare/${ShcpApiSdk.getApiSuffix()}/healthProfile/diaryTask/submit`,
@@ -2020,8 +2353,10 @@ class HealthProfileApi {
2020
2353
  data,
2021
2354
  });
2022
2355
  }
2023
- // 提交报告任务
2024
- // URL: /api/shcp-healthcare/${ShcpApiSdk.getApiSuffix()}/healthProfile/reportTask/submit
2356
+ /**
2357
+ * 提交报告任务
2358
+ * URL: /api/shcp-healthcare/${ShcpApiSdk.getApiSuffix()}/healthProfile/reportTask/submit
2359
+ */
2025
2360
  static submitReportTask(data) {
2026
2361
  return ShcpApiSdk.request({
2027
2362
  url: `/api/shcp-healthcare/${ShcpApiSdk.getApiSuffix()}/healthProfile/reportTask/submit`,
@@ -2029,8 +2364,10 @@ class HealthProfileApi {
2029
2364
  data,
2030
2365
  });
2031
2366
  }
2032
- // 获取报告任务
2033
- // URL: /api/shcp-healthcare/${ShcpApiSdk.getApiSuffix()}/healthProfile/reportTask/fetch
2367
+ /**
2368
+ * 获取报告任务
2369
+ * URL: /api/shcp-healthcare/${ShcpApiSdk.getApiSuffix()}/healthProfile/reportTask/fetch
2370
+ */
2034
2371
  static fetchReportTask(data) {
2035
2372
  return ShcpApiSdk.request({
2036
2373
  url: `/api/shcp-healthcare/${ShcpApiSdk.getApiSuffix()}/healthProfile/reportTask/fetch`,
@@ -2041,8 +2378,10 @@ class HealthProfileApi {
2041
2378
  }
2042
2379
 
2043
2380
  class HealthSelfAssessApi {
2044
- // 启动健康自评
2045
- // URL: /api/shcp-healthcare/${ShcpApiSdk.getApiSuffix()}/healthSelfAssess/start
2381
+ /**
2382
+ * 启动健康自评
2383
+ * URL: /api/shcp-healthcare/${ShcpApiSdk.getApiSuffix()}/healthSelfAssess/start
2384
+ */
2046
2385
  static start(data) {
2047
2386
  return ShcpApiSdk.request({
2048
2387
  url: `/api/shcp-healthcare/${ShcpApiSdk.getApiSuffix()}/healthSelfAssess/start`,
@@ -2050,8 +2389,10 @@ class HealthSelfAssessApi {
2050
2389
  data,
2051
2390
  });
2052
2391
  }
2053
- // 提交评估任务
2054
- // URL: /api/shcp-healthcare/${ShcpApiSdk.getApiSuffix()}/healthSelfAssess/task/submit
2392
+ /**
2393
+ * 提交评估任务
2394
+ * URL: /api/shcp-healthcare/${ShcpApiSdk.getApiSuffix()}/healthSelfAssess/task/submit
2395
+ */
2055
2396
  static submitTask(data) {
2056
2397
  return ShcpApiSdk.request({
2057
2398
  url: `/api/shcp-healthcare/${ShcpApiSdk.getApiSuffix()}/healthSelfAssess/task/submit`,
@@ -2059,8 +2400,10 @@ class HealthSelfAssessApi {
2059
2400
  data,
2060
2401
  });
2061
2402
  }
2062
- // 获取评估任务
2063
- // URL: /api/shcp-healthcare/${ShcpApiSdk.getApiSuffix()}/healthSelfAssess/task/fetch
2403
+ /**
2404
+ * 获取评估任务
2405
+ * URL: /api/shcp-healthcare/${ShcpApiSdk.getApiSuffix()}/healthSelfAssess/task/fetch
2406
+ */
2064
2407
  static fetchTask(data) {
2065
2408
  return ShcpApiSdk.request({
2066
2409
  url: `/api/shcp-healthcare/${ShcpApiSdk.getApiSuffix()}/healthSelfAssess/task/fetch`,
@@ -2070,8 +2413,10 @@ class HealthSelfAssessApi {
2070
2413
  }
2071
2414
  }
2072
2415
 
2073
- // 服务流程.发起
2074
- // URL: /api/shcp-healthcare/${ShcpApiSdk.getApiSuffix()}/healthStudy/start
2416
+ /**
2417
+ * 服务流程.发起
2418
+ * URL: /api/shcp-healthcare/${ShcpApiSdk.getApiSuffix()}/healthStudy/start
2419
+ */
2075
2420
  function start(data) {
2076
2421
  return ShcpApiSdk.request({
2077
2422
  url: `/api/shcp-healthcare/${ShcpApiSdk.getApiSuffix()}/healthStudy/start`,
@@ -2079,8 +2424,10 @@ function start(data) {
2079
2424
  data,
2080
2425
  });
2081
2426
  }
2082
- // 服务流程.领取
2083
- // URL: /api/shcp-healthcare/${ShcpApiSdk.getApiSuffix()}/healthStudy/claim
2427
+ /**
2428
+ * 服务流程.领取
2429
+ * URL: /api/shcp-healthcare/${ShcpApiSdk.getApiSuffix()}/healthStudy/claim
2430
+ */
2084
2431
  function claim(data) {
2085
2432
  return ShcpApiSdk.request({
2086
2433
  url: `/api/shcp-healthcare/${ShcpApiSdk.getApiSuffix()}/healthStudy/claim`,
@@ -2088,8 +2435,10 @@ function claim(data) {
2088
2435
  data,
2089
2436
  });
2090
2437
  }
2091
- // 服务流程.终止
2092
- // URL: /api/shcp-healthcare/${ShcpApiSdk.getApiSuffix()}/healthStudy/terminate
2438
+ /**
2439
+ * 服务流程.终止
2440
+ * URL: /api/shcp-healthcare/${ShcpApiSdk.getApiSuffix()}/healthStudy/terminate
2441
+ */
2093
2442
  function terminate(data) {
2094
2443
  return ShcpApiSdk.request({
2095
2444
  url: `/api/shcp-healthcare/${ShcpApiSdk.getApiSuffix()}/healthStudy/terminate`,
@@ -2097,8 +2446,10 @@ function terminate(data) {
2097
2446
  data,
2098
2447
  });
2099
2448
  }
2100
- // 服务流程.标记用户
2101
- // URL: /api/shcp-healthcare/${ShcpApiSdk.getApiSuffix()}/healthStudy/consumerMark
2449
+ /**
2450
+ * 服务流程.标记用户
2451
+ * URL: /api/shcp-healthcare/${ShcpApiSdk.getApiSuffix()}/healthStudy/consumerMark
2452
+ */
2102
2453
  function consumerMark(data) {
2103
2454
  return ShcpApiSdk.request({
2104
2455
  url: `/api/shcp-healthcare/${ShcpApiSdk.getApiSuffix()}/healthStudy/consumerMark`,
@@ -2106,8 +2457,10 @@ function consumerMark(data) {
2106
2457
  data,
2107
2458
  });
2108
2459
  }
2109
- // 服务流程.联系用户
2110
- // URL: /api/shcp-healthcare/${ShcpApiSdk.getApiSuffix()}/healthStudy/consumerContact
2460
+ /**
2461
+ * 服务流程.联系用户
2462
+ * URL: /api/shcp-healthcare/${ShcpApiSdk.getApiSuffix()}/healthStudy/consumerContact
2463
+ */
2111
2464
  function consumerContact(data) {
2112
2465
  return ShcpApiSdk.request({
2113
2466
  url: `/api/shcp-healthcare/${ShcpApiSdk.getApiSuffix()}/healthStudy/consumerContact`,
@@ -2115,8 +2468,10 @@ function consumerContact(data) {
2115
2468
  data,
2116
2469
  });
2117
2470
  }
2118
- // 流程任务.获取
2119
- // URL: /api/shcp-healthcare/${ShcpApiSdk.getApiSuffix()}/healthStudy/task/fetch
2471
+ /**
2472
+ * 流程任务.获取
2473
+ * URL: /api/shcp-healthcare/${ShcpApiSdk.getApiSuffix()}/healthStudy/task/fetch
2474
+ */
2120
2475
  function taskFetch(data) {
2121
2476
  return ShcpApiSdk.request({
2122
2477
  url: `/api/shcp-healthcare/${ShcpApiSdk.getApiSuffix()}/healthStudy/task/fetch`,
@@ -2124,8 +2479,10 @@ function taskFetch(data) {
2124
2479
  data,
2125
2480
  });
2126
2481
  }
2127
- // 流程任务.提交
2128
- // URL: /api/shcp-healthcare/${ShcpApiSdk.getApiSuffix()}/healthStudy/task/submit
2482
+ /**
2483
+ * 流程任务.提交
2484
+ * URL: /api/shcp-healthcare/${ShcpApiSdk.getApiSuffix()}/healthStudy/task/submit
2485
+ */
2129
2486
  function taskSubmit(data) {
2130
2487
  return ShcpApiSdk.request({
2131
2488
  url: `/api/shcp-healthcare/${ShcpApiSdk.getApiSuffix()}/healthStudy/task/submit`,
@@ -2133,8 +2490,10 @@ function taskSubmit(data) {
2133
2490
  data,
2134
2491
  });
2135
2492
  }
2136
- // 流程任务.取消
2137
- // URL: /api/shcp-healthcare/${ShcpApiSdk.getApiSuffix()}/healthStudy/task/cancel
2493
+ /**
2494
+ * 流程任务.取消
2495
+ * URL: /api/shcp-healthcare/${ShcpApiSdk.getApiSuffix()}/healthStudy/task/cancel
2496
+ */
2138
2497
  function taskCancel(data) {
2139
2498
  return ShcpApiSdk.request({
2140
2499
  url: `/api/shcp-healthcare/${ShcpApiSdk.getApiSuffix()}/healthStudy/task/cancel`,
@@ -2142,8 +2501,10 @@ function taskCancel(data) {
2142
2501
  data,
2143
2502
  });
2144
2503
  }
2145
- // 流程任务.保存
2146
- // URL: /api/shcp-healthcare/${ShcpApiSdk.getApiSuffix()}/healthStudy/task/save
2504
+ /**
2505
+ * 流程任务.保存
2506
+ * URL: /api/shcp-healthcare/${ShcpApiSdk.getApiSuffix()}/healthStudy/task/save
2507
+ */
2147
2508
  function taskSave(data) {
2148
2509
  return ShcpApiSdk.request({
2149
2510
  url: `/api/shcp-healthcare/${ShcpApiSdk.getApiSuffix()}/healthStudy/task/save`,
@@ -2223,8 +2584,10 @@ class HealthToolApi {
2223
2584
  }
2224
2585
 
2225
2586
  class HelpCenterApi {
2226
- // 获取帮助中心配置
2227
- // URL: /api/blade-system/${ShcpApiSdk.getApiSuffix()}/helpCenter/get
2587
+ /**
2588
+ * 获取帮助中心配置
2589
+ * URL: /api/blade-system/${ShcpApiSdk.getApiSuffix()}/helpCenter/get
2590
+ */
2228
2591
  static getConfig(clientType) {
2229
2592
  const url = `/api/blade-system/${ShcpApiSdk.getApiSuffix()}/helpCenter/get`;
2230
2593
  return ShcpApiSdk.request({
@@ -2238,8 +2601,10 @@ class HelpCenterApi {
2238
2601
  }
2239
2602
 
2240
2603
  class ImUserApi {
2241
- // 用户登录
2242
- // URL: /api/shcp-message/${ShcpApiSdk.getApiSuffix()}/message/im/login
2604
+ /**
2605
+ * 用户登录
2606
+ * URL: /api/shcp-message/${ShcpApiSdk.getApiSuffix()}/message/im/login
2607
+ */
2243
2608
  static login(data) {
2244
2609
  return ShcpApiSdk.request({
2245
2610
  url: `/api/shcp-message/${ShcpApiSdk.getApiSuffix()}/message/im/login`,
@@ -2247,8 +2612,10 @@ class ImUserApi {
2247
2612
  data,
2248
2613
  });
2249
2614
  }
2250
- // 获取对话用户信息
2251
- // URL: /api/shcp-message/${ShcpApiSdk.getApiSuffix()}/message/im/getUser
2615
+ /**
2616
+ * 获取对话用户信息
2617
+ * URL: /api/shcp-message/${ShcpApiSdk.getApiSuffix()}/message/im/getUser
2618
+ */
2252
2619
  static getUser(data) {
2253
2620
  return ShcpApiSdk.request({
2254
2621
  url: `/api/shcp-message/${ShcpApiSdk.getApiSuffix()}/message/im/getUser`,
@@ -2256,8 +2623,10 @@ class ImUserApi {
2256
2623
  data,
2257
2624
  });
2258
2625
  }
2259
- // 获取对话用户信息
2260
- // URL: /api/shcp-message/${ShcpApiSdk.getApiSuffix()}/message/im/getUserList
2626
+ /**
2627
+ * 获取对话用户信息
2628
+ * URL: /api/shcp-message/${ShcpApiSdk.getApiSuffix()}/message/im/getUserList
2629
+ */
2261
2630
  static getUserList(data) {
2262
2631
  return ShcpApiSdk.request({
2263
2632
  url: `/api/shcp-message/${ShcpApiSdk.getApiSuffix()}/message/im/getUserList`,
@@ -2268,7 +2637,9 @@ class ImUserApi {
2268
2637
  }
2269
2638
 
2270
2639
  class KmArticleApi {
2271
- // 查询文章分类树
2640
+ /**
2641
+ * 查询文章分类树
2642
+ */
2272
2643
  static getCategoryTree(data) {
2273
2644
  return ShcpApiSdk.request({
2274
2645
  url: '/api/shcp-km/article/category/tree',
@@ -2276,7 +2647,9 @@ class KmArticleApi {
2276
2647
  data,
2277
2648
  });
2278
2649
  }
2279
- // 查询文章分页列表
2650
+ /**
2651
+ * 查询文章分页列表
2652
+ */
2280
2653
  static getPage(data) {
2281
2654
  return ShcpApiSdk.request({
2282
2655
  url: '/api/shcp-km/article/page',
@@ -2288,7 +2661,9 @@ class KmArticleApi {
2288
2661
  },
2289
2662
  });
2290
2663
  }
2291
- // 文章内容查询
2664
+ /**
2665
+ * 文章内容查询
2666
+ */
2292
2667
  static getContent(id) {
2293
2668
  return ShcpApiSdk.request({
2294
2669
  url: '/api/shcp-km/article/content/query',
@@ -2296,7 +2671,9 @@ class KmArticleApi {
2296
2671
  params: { id },
2297
2672
  });
2298
2673
  }
2299
- // 查询标签分类树
2674
+ /**
2675
+ * 查询标签分类树
2676
+ */
2300
2677
  static getTagCategoryTree(data) {
2301
2678
  return ShcpApiSdk.request({
2302
2679
  url: '/api/shcp-km/article/tag/category/tree',
@@ -2304,7 +2681,9 @@ class KmArticleApi {
2304
2681
  data,
2305
2682
  });
2306
2683
  }
2307
- // 查询标签分页列表
2684
+ /**
2685
+ * 查询标签分页列表
2686
+ */
2308
2687
  static getTagPage(data) {
2309
2688
  return ShcpApiSdk.request({
2310
2689
  url: '/api/shcp-km/article/tag/page',
@@ -2319,8 +2698,10 @@ class KmArticleApi {
2319
2698
  }
2320
2699
 
2321
2700
  class KmFormApi {
2322
- // 获取表单内容
2323
- // URL: /api/shcp-km/${ShcpApiSdk.getApiSuffix()}/form/content/query
2701
+ /**
2702
+ * 获取表单内容
2703
+ * URL: /api/shcp-km/${ShcpApiSdk.getApiSuffix()}/form/content/query
2704
+ */
2324
2705
  static getContent(formId) {
2325
2706
  return ShcpApiSdk.request({
2326
2707
  url: `/api/shcp-km/${ShcpApiSdk.getApiSuffix()}/form/content/query`,
@@ -2343,8 +2724,10 @@ class KmFormApi {
2343
2724
  }
2344
2725
 
2345
2726
  class KmFormRuleRelationApi {
2346
- // 单个查询
2347
- // URL: /api/shcp-km/${ShcpApiSdk.getApiSuffix()}/form/rule/get
2727
+ /**
2728
+ * 单个查询
2729
+ * URL: /api/shcp-km/${ShcpApiSdk.getApiSuffix()}/form/rule/get
2730
+ */
2348
2731
  static get(data) {
2349
2732
  return ShcpApiSdk.request({
2350
2733
  url: `/api/shcp-km/${ShcpApiSdk.getApiSuffix()}/form/rule/get`,
@@ -2352,8 +2735,10 @@ class KmFormRuleRelationApi {
2352
2735
  data,
2353
2736
  });
2354
2737
  }
2355
- // 列表查询
2356
- // URL: /api/shcp-km/${ShcpApiSdk.getApiSuffix()}/form/rule/list
2738
+ /**
2739
+ * 列表查询
2740
+ * URL: /api/shcp-km/${ShcpApiSdk.getApiSuffix()}/form/rule/list
2741
+ */
2357
2742
  static getList(data) {
2358
2743
  return ShcpApiSdk.request({
2359
2744
  url: `/api/shcp-km/${ShcpApiSdk.getApiSuffix()}/form/rule/list`,
@@ -2364,8 +2749,10 @@ class KmFormRuleRelationApi {
2364
2749
  }
2365
2750
 
2366
2751
  class LoginApi {
2367
- // 新增
2368
- // URL: /api/blade-system/${ShcpApiSdk.getApiSuffix()}/potentialCustomer/create
2752
+ /**
2753
+ * 新增
2754
+ * URL: /api/blade-system/${ShcpApiSdk.getApiSuffix()}/potentialCustomer/create
2755
+ */
2369
2756
  static createApplyAccount(data) {
2370
2757
  return ShcpApiSdk.request({
2371
2758
  url: `/api/blade-system/${ShcpApiSdk.getApiSuffix()}/potentialCustomer/create`,
@@ -2373,8 +2760,10 @@ class LoginApi {
2373
2760
  data,
2374
2761
  });
2375
2762
  }
2376
- // 获取申请结果
2377
- // URL: /api/blade-system/${ShcpApiSdk.getApiSuffix()}/salesConfig/get
2763
+ /**
2764
+ * 获取申请结果
2765
+ * URL: /api/blade-system/${ShcpApiSdk.getApiSuffix()}/salesConfig/get
2766
+ */
2378
2767
  static getApplyResult() {
2379
2768
  return ShcpApiSdk.request({
2380
2769
  url: `/api/blade-system/${ShcpApiSdk.getApiSuffix()}/salesConfig/get`,
@@ -2382,8 +2771,10 @@ class LoginApi {
2382
2771
  data: {},
2383
2772
  });
2384
2773
  }
2385
- // 刷新token
2386
- // URL: /api/blade-auth/oauth/token
2774
+ /**
2775
+ * 刷新token
2776
+ * URL: /api/blade-auth/oauth/token
2777
+ */
2387
2778
  static refreshToken(data) {
2388
2779
  return ShcpApiSdk.request({
2389
2780
  url: '/api/blade-auth/oauth/token',
@@ -2398,8 +2789,10 @@ class LoginApi {
2398
2789
  },
2399
2790
  });
2400
2791
  }
2401
- // 用户登录
2402
- // URL: /api/blade-auth/oauth/token
2792
+ /**
2793
+ * 用户登录
2794
+ * URL: /api/blade-auth/oauth/token
2795
+ */
2403
2796
  static toLogin(data) {
2404
2797
  return ShcpApiSdk.request({
2405
2798
  url: `/api/blade-auth/oauth/token`,
@@ -2420,8 +2813,10 @@ class LoginApi {
2420
2813
  },
2421
2814
  });
2422
2815
  }
2423
- // 应用客户端登录
2424
- // URL: /api/blade-auth/appClient/login
2816
+ /**
2817
+ * 应用客户端登录
2818
+ * URL: /api/blade-auth/appClient/login
2819
+ */
2425
2820
  static appClientLogin(data) {
2426
2821
  return ShcpApiSdk.request({
2427
2822
  url: '/api/blade-auth/appClient/login',
@@ -2429,8 +2824,10 @@ class LoginApi {
2429
2824
  data,
2430
2825
  });
2431
2826
  }
2432
- // 获取租户列表
2433
- // URL: /api/blade-system/tenant/selectTenant
2827
+ /**
2828
+ * 获取租户列表
2829
+ * URL: /api/blade-system/tenant/selectTenant
2830
+ */
2434
2831
  static getTenantList() {
2435
2832
  return ShcpApiSdk.request({
2436
2833
  url: `/api/blade-system/tenant/selectTenant`,
@@ -2440,8 +2837,10 @@ class LoginApi {
2440
2837
  },
2441
2838
  });
2442
2839
  }
2443
- // 获取关联租户列表
2444
- // URL: /api/blade-system/${ShcpApiSdk.getApiSuffix()}/appClient/list
2840
+ /**
2841
+ * 获取关联租户列表
2842
+ * URL: /api/blade-system/${ShcpApiSdk.getApiSuffix()}/appClient/list
2843
+ */
2445
2844
  static getRelatedTenantList(relateTenantId) {
2446
2845
  return ShcpApiSdk.request({
2447
2846
  url: `/api/blade-system/${ShcpApiSdk.getApiSuffix()}/appClient/list`,
@@ -2454,8 +2853,10 @@ class LoginApi {
2454
2853
  }
2455
2854
 
2456
2855
  class MarketingApi {
2457
- // 保存营销内容
2458
- // URL: /api/shcp-marketing/${ShcpApiSdk.getApiSuffix()}/marketing/content/save
2856
+ /**
2857
+ * 保存营销内容
2858
+ * URL: /api/shcp-marketing/${ShcpApiSdk.getApiSuffix()}/marketing/content/save
2859
+ */
2459
2860
  static saveContent(data) {
2460
2861
  return ShcpApiSdk.request({
2461
2862
  url: `/api/shcp-marketing/${ShcpApiSdk.getApiSuffix()}/marketing/content/save`,
@@ -2463,8 +2864,10 @@ class MarketingApi {
2463
2864
  data,
2464
2865
  });
2465
2866
  }
2466
- // 创建营销活动
2467
- // URL: /api/shcp-marketing/${ShcpApiSdk.getApiSuffix()}/marketing/create
2867
+ /**
2868
+ * 创建营销活动
2869
+ * URL: /api/shcp-marketing/${ShcpApiSdk.getApiSuffix()}/marketing/create
2870
+ */
2468
2871
  static create(data) {
2469
2872
  return ShcpApiSdk.request({
2470
2873
  url: `/api/shcp-marketing/${ShcpApiSdk.getApiSuffix()}/marketing/create`,
@@ -2472,8 +2875,10 @@ class MarketingApi {
2472
2875
  data,
2473
2876
  });
2474
2877
  }
2475
- // 更新营销活动
2476
- // URL: /api/shcp-marketing/${ShcpApiSdk.getApiSuffix()}/marketing/update
2878
+ /**
2879
+ * 更新营销活动
2880
+ * URL: /api/shcp-marketing/${ShcpApiSdk.getApiSuffix()}/marketing/update
2881
+ */
2477
2882
  static update(data) {
2478
2883
  return ShcpApiSdk.request({
2479
2884
  url: `/api/shcp-marketing/${ShcpApiSdk.getApiSuffix()}/marketing/update`,
@@ -2481,8 +2886,10 @@ class MarketingApi {
2481
2886
  data,
2482
2887
  });
2483
2888
  }
2484
- // 获取营销活动分页
2485
- // URL: /api/shcp-marketing/${ShcpApiSdk.getApiSuffix()}/marketing/page
2889
+ /**
2890
+ * 获取营销活动分页
2891
+ * URL: /api/shcp-marketing/${ShcpApiSdk.getApiSuffix()}/marketing/page
2892
+ */
2486
2893
  static getPage(data) {
2487
2894
  return ShcpApiSdk.request({
2488
2895
  url: `/api/shcp-marketing/${ShcpApiSdk.getApiSuffix()}/marketing/page`,
@@ -2494,8 +2901,10 @@ class MarketingApi {
2494
2901
  },
2495
2902
  });
2496
2903
  }
2497
- // 删除营销活动
2498
- // URL: /api/shcp-marketing/${ShcpApiSdk.getApiSuffix()}/marketing/delete
2904
+ /**
2905
+ * 删除营销活动
2906
+ * URL: /api/shcp-marketing/${ShcpApiSdk.getApiSuffix()}/marketing/delete
2907
+ */
2499
2908
  static delete(data) {
2500
2909
  return ShcpApiSdk.request({
2501
2910
  url: `/api/shcp-marketing/${ShcpApiSdk.getApiSuffix()}/marketing/delete`,
@@ -2503,16 +2912,20 @@ class MarketingApi {
2503
2912
  data,
2504
2913
  });
2505
2914
  }
2506
- // 获取营销活动详情
2507
- // URL: /api/shcp-marketing/${ShcpApiSdk.getApiSuffix()}/marketing/detail
2915
+ /**
2916
+ * 获取营销活动详情
2917
+ * URL: /api/shcp-marketing/${ShcpApiSdk.getApiSuffix()}/marketing/detail
2918
+ */
2508
2919
  static getDetail(id) {
2509
2920
  return ShcpApiSdk.request({
2510
2921
  url: `/api/shcp-marketing/${ShcpApiSdk.getApiSuffix()}/marketing/detail?id=${id}`,
2511
2922
  method: 'get',
2512
2923
  });
2513
2924
  }
2514
- // 获取营销任务分页
2515
- // URL: /api/shcp-marketing/${ShcpApiSdk.getApiSuffix()}/marketing/task/page
2925
+ /**
2926
+ * 获取营销任务分页
2927
+ * URL: /api/shcp-marketing/${ShcpApiSdk.getApiSuffix()}/marketing/task/page
2928
+ */
2516
2929
  static getTaskPage(data) {
2517
2930
  return ShcpApiSdk.request({
2518
2931
  url: `/api/shcp-marketing/${ShcpApiSdk.getApiSuffix()}/marketing/task/page`,
@@ -2524,8 +2937,10 @@ class MarketingApi {
2524
2937
  },
2525
2938
  });
2526
2939
  }
2527
- // 获取营销任务日志分页
2528
- // URL: /api/shcp-marketing/${ShcpApiSdk.getApiSuffix()}/marketing/task/log/page
2940
+ /**
2941
+ * 获取营销任务日志分页
2942
+ * URL: /api/shcp-marketing/${ShcpApiSdk.getApiSuffix()}/marketing/task/log/page
2943
+ */
2529
2944
  static getTaskLogPage(data) {
2530
2945
  return ShcpApiSdk.request({
2531
2946
  url: `/api/shcp-marketing/${ShcpApiSdk.getApiSuffix()}/marketing/task/log/page`,
@@ -2533,8 +2948,10 @@ class MarketingApi {
2533
2948
  data,
2534
2949
  });
2535
2950
  }
2536
- // 创建营销任务日志
2537
- // URL: /api/shcp-marketing/${ShcpApiSdk.getApiSuffix()}/marketing/task/log/create
2951
+ /**
2952
+ * 创建营销任务日志
2953
+ * URL: /api/shcp-marketing/${ShcpApiSdk.getApiSuffix()}/marketing/task/log/create
2954
+ */
2538
2955
  static createTaskLogs(data) {
2539
2956
  return ShcpApiSdk.request({
2540
2957
  url: `/api/shcp-marketing/${ShcpApiSdk.getApiSuffix()}/marketing/task/log/create`,
@@ -2542,8 +2959,10 @@ class MarketingApi {
2542
2959
  data,
2543
2960
  });
2544
2961
  }
2545
- // 获取消息模板列表
2546
- // URL: /api/shcp-marketing/${ShcpApiSdk.getApiSuffix()}/message/template/list
2962
+ /**
2963
+ * 获取消息模板列表
2964
+ * URL: /api/shcp-marketing/${ShcpApiSdk.getApiSuffix()}/message/template/list
2965
+ */
2547
2966
  static getMessageTemplateList(data) {
2548
2967
  return ShcpApiSdk.request({
2549
2968
  url: `/api/shcp-marketing/${ShcpApiSdk.getApiSuffix()}/message/template/list`,
@@ -2551,8 +2970,10 @@ class MarketingApi {
2551
2970
  data,
2552
2971
  });
2553
2972
  }
2554
- // 获取消息模板详情
2555
- // URL: /api/shcp-marketing/${ShcpApiSdk.getApiSuffix()}/message/template/detail
2973
+ /**
2974
+ * 获取消息模板详情
2975
+ * URL: /api/shcp-marketing/${ShcpApiSdk.getApiSuffix()}/message/template/detail
2976
+ */
2556
2977
  static getMessageTemplateDetail(id) {
2557
2978
  return ShcpApiSdk.request({
2558
2979
  url: `/api/shcp-marketing/${ShcpApiSdk.getApiSuffix()}/message/template/detail`,
@@ -2560,8 +2981,10 @@ class MarketingApi {
2560
2981
  params: { id },
2561
2982
  });
2562
2983
  }
2563
- // 获取模版列表数据
2564
- // URL: /api/shcp-marketing/${ShcpApiSdk.getApiSuffix()}/marketing/content/list
2984
+ /**
2985
+ * 获取模版列表数据
2986
+ * URL: /api/shcp-marketing/${ShcpApiSdk.getApiSuffix()}/marketing/content/list
2987
+ */
2565
2988
  static getSendContent(data) {
2566
2989
  return ShcpApiSdk.request({
2567
2990
  url: `/api/shcp-marketing/${ShcpApiSdk.getApiSuffix()}/marketing/content/list`,
@@ -2572,8 +2995,10 @@ class MarketingApi {
2572
2995
  }
2573
2996
 
2574
2997
  class MessageRecordApi {
2575
- // 获取消息记录详情
2576
- // URL: /api/shcp-message/${ShcpApiSdk.getApiSuffix()}/message/record/detail
2998
+ /**
2999
+ * 获取消息记录详情
3000
+ * URL: /api/shcp-message/${ShcpApiSdk.getApiSuffix()}/message/record/detail
3001
+ */
2577
3002
  static getDetail(id) {
2578
3003
  return ShcpApiSdk.request({
2579
3004
  url: `/api/shcp-message/${ShcpApiSdk.getApiSuffix()}/message/record/detail`,
@@ -2581,8 +3006,10 @@ class MessageRecordApi {
2581
3006
  params: { id },
2582
3007
  });
2583
3008
  }
2584
- // 按天分组获取消息记录分页
2585
- // URL: /api/shcp-message/${ShcpApiSdk.getApiSuffix()}/message/record/pageGroupedByDay
3009
+ /**
3010
+ * 按天分组获取消息记录分页
3011
+ * URL: /api/shcp-message/${ShcpApiSdk.getApiSuffix()}/message/record/pageGroupedByDay
3012
+ */
2586
3013
  static getPageGroupedByDay(data) {
2587
3014
  return ShcpApiSdk.request({
2588
3015
  url: `/api/shcp-message/${ShcpApiSdk.getApiSuffix()}/message/record/pageGroupedByDay`,
@@ -2594,8 +3021,10 @@ class MessageRecordApi {
2594
3021
  },
2595
3022
  });
2596
3023
  }
2597
- // 更新消息记录
2598
- // URL: /api/shcp-message/${ShcpApiSdk.getApiSuffix()}/message/record/update
3024
+ /**
3025
+ * 更新消息记录
3026
+ * URL: /api/shcp-message/${ShcpApiSdk.getApiSuffix()}/message/record/update
3027
+ */
2599
3028
  static update(data) {
2600
3029
  return ShcpApiSdk.request({
2601
3030
  url: `/api/shcp-message/${ShcpApiSdk.getApiSuffix()}/message/record/update`,
@@ -2607,8 +3036,10 @@ class MessageRecordApi {
2607
3036
 
2608
3037
  class MineApi {
2609
3038
  }
2610
- // 获取用户信息
2611
- // URL: /api/blade-system/user/info
3039
+ /**
3040
+ * 获取用户信息
3041
+ * URL: /api/blade-system/user/info
3042
+ */
2612
3043
  MineApi.getUserInfo = (id) => {
2613
3044
  return ShcpApiSdk.request({
2614
3045
  url: `/api/blade-system/user/info`,
@@ -2616,8 +3047,10 @@ MineApi.getUserInfo = (id) => {
2616
3047
  params: { id },
2617
3048
  });
2618
3049
  };
2619
- // 更新用户信息
2620
- // URL: /api/blade-system/user/update-info
3050
+ /**
3051
+ * 更新用户信息
3052
+ * URL: /api/blade-system/user/update-info
3053
+ */
2621
3054
  MineApi.updateInfo = (data) => {
2622
3055
  return ShcpApiSdk.request({
2623
3056
  url: `/api/blade-system/user/update-info`,
@@ -2625,8 +3058,10 @@ MineApi.updateInfo = (data) => {
2625
3058
  data,
2626
3059
  });
2627
3060
  };
2628
- // 获取我的页面配置
2629
- // URL: /api/blade-system/${ShcpApiSdk.getApiSuffix()}/appClient/pageConfig/get
3061
+ /**
3062
+ * 获取我的页面配置
3063
+ * URL: /api/blade-system/${ShcpApiSdk.getApiSuffix()}/appClient/pageConfig/get
3064
+ */
2630
3065
  MineApi.getMyPageConfig = (data) => {
2631
3066
  return ShcpApiSdk.request({
2632
3067
  url: `/api/blade-system/${ShcpApiSdk.getApiSuffix()}/appClient/pageConfig/get`,
@@ -2635,8 +3070,10 @@ MineApi.getMyPageConfig = (data) => {
2635
3070
  custom: { showError: false },
2636
3071
  });
2637
3072
  };
2638
- // 获取详情内容
2639
- // URL: /api/shcp-km/${ShcpApiSdk.getApiSuffix()}/article/content/query
3073
+ /**
3074
+ * 获取详情内容
3075
+ * URL: /api/shcp-km/${ShcpApiSdk.getApiSuffix()}/article/content/query
3076
+ */
2640
3077
  MineApi.getArticleContent = (id) => {
2641
3078
  return ShcpApiSdk.request({
2642
3079
  url: `/api/shcp-km/${ShcpApiSdk.getApiSuffix()}/article/content/query`,
@@ -2646,8 +3083,10 @@ MineApi.getArticleContent = (id) => {
2646
3083
  };
2647
3084
 
2648
3085
  class RightQrcodeApi {
2649
- // 获取权益二维码分页
2650
- // URL: /api/blade-system/${ShcpApiSdk.getApiSuffix()}/right/qrCode/page
3086
+ /**
3087
+ * 获取权益二维码分页
3088
+ * URL: /api/blade-system/${ShcpApiSdk.getApiSuffix()}/right/qrCode/page
3089
+ */
2651
3090
  static getPage(data) {
2652
3091
  return ShcpApiSdk.request({
2653
3092
  url: `/api/blade-system/${ShcpApiSdk.getApiSuffix()}/right/qrCode/page`,
@@ -2656,8 +3095,10 @@ class RightQrcodeApi {
2656
3095
  params: data,
2657
3096
  });
2658
3097
  }
2659
- // 更新权益二维码
2660
- // URL: /api/blade-system/${ShcpApiSdk.getApiSuffix()}/right/qrCode/update
3098
+ /**
3099
+ * 更新权益二维码
3100
+ * URL: /api/blade-system/${ShcpApiSdk.getApiSuffix()}/right/qrCode/update
3101
+ */
2661
3102
  static update(data) {
2662
3103
  return ShcpApiSdk.request({
2663
3104
  url: `/api/blade-system/${ShcpApiSdk.getApiSuffix()}/right/qrCode/update`,
@@ -2665,8 +3106,10 @@ class RightQrcodeApi {
2665
3106
  data,
2666
3107
  });
2667
3108
  }
2668
- // 创建权益二维码
2669
- // URL: /api/blade-system/${ShcpApiSdk.getApiSuffix()}/right/qrCode/create
3109
+ /**
3110
+ * 创建权益二维码
3111
+ * URL: /api/blade-system/${ShcpApiSdk.getApiSuffix()}/right/qrCode/create
3112
+ */
2670
3113
  static create(data) {
2671
3114
  return ShcpApiSdk.request({
2672
3115
  url: `/api/blade-system/${ShcpApiSdk.getApiSuffix()}/right/qrCode/create`,
@@ -2674,8 +3117,10 @@ class RightQrcodeApi {
2674
3117
  data,
2675
3118
  });
2676
3119
  }
2677
- // 删除权益二维码
2678
- // URL: /api/blade-system/${ShcpApiSdk.getApiSuffix()}/right/qrCode/delete
3120
+ /**
3121
+ * 删除权益二维码
3122
+ * URL: /api/blade-system/${ShcpApiSdk.getApiSuffix()}/right/qrCode/delete
3123
+ */
2679
3124
  static delete(ids) {
2680
3125
  return ShcpApiSdk.request({
2681
3126
  url: `/api/blade-system/${ShcpApiSdk.getApiSuffix()}/right/qrCode/delete`,
@@ -2683,8 +3128,10 @@ class RightQrcodeApi {
2683
3128
  data: ids,
2684
3129
  });
2685
3130
  }
2686
- // 获取权益二维码详情
2687
- // URL: /api/blade-system/${ShcpApiSdk.getApiSuffix()}/right/qrCode/detail
3131
+ /**
3132
+ * 获取权益二维码详情
3133
+ * URL: /api/blade-system/${ShcpApiSdk.getApiSuffix()}/right/qrCode/detail
3134
+ */
2688
3135
  static getDetail(id) {
2689
3136
  return ShcpApiSdk.request({
2690
3137
  url: `/api/blade-system/${ShcpApiSdk.getApiSuffix()}/right/qrCode/detail`,
@@ -2695,8 +3142,10 @@ class RightQrcodeApi {
2695
3142
  }
2696
3143
 
2697
3144
  class RightServiceConfigApi {
2698
- // 通用.查询单个(按ID)
2699
- // URL: /api/blade-system/${ShcpApiSdk.getApiSuffix()}/right/serviceConfig/detail
3145
+ /**
3146
+ * 通用.查询单个(按ID)
3147
+ * URL: /api/blade-system/${ShcpApiSdk.getApiSuffix()}/right/serviceConfig/detail
3148
+ */
2700
3149
  static getDetail(id) {
2701
3150
  return ShcpApiSdk.request({
2702
3151
  url: `/api/blade-system/${ShcpApiSdk.getApiSuffix()}/right/serviceConfig/detail`,
@@ -2704,8 +3153,10 @@ class RightServiceConfigApi {
2704
3153
  params: { id },
2705
3154
  });
2706
3155
  }
2707
- // 通用.查询单个(按条件)
2708
- // URL: /api/blade-system/${ShcpApiSdk.getApiSuffix()}/right/serviceConfig/get
3156
+ /**
3157
+ * 通用.查询单个(按条件)
3158
+ * URL: /api/blade-system/${ShcpApiSdk.getApiSuffix()}/right/serviceConfig/get
3159
+ */
2709
3160
  static get(data) {
2710
3161
  return ShcpApiSdk.request({
2711
3162
  url: `/api/blade-system/${ShcpApiSdk.getApiSuffix()}/right/serviceConfig/get`,
@@ -2713,8 +3164,10 @@ class RightServiceConfigApi {
2713
3164
  data,
2714
3165
  });
2715
3166
  }
2716
- // 通用.查询列表
2717
- // URL: /api/blade-system/${ShcpApiSdk.getApiSuffix()}/right/serviceConfig/list
3167
+ /**
3168
+ * 通用.查询列表
3169
+ * URL: /api/blade-system/${ShcpApiSdk.getApiSuffix()}/right/serviceConfig/list
3170
+ */
2718
3171
  static getList(data) {
2719
3172
  return ShcpApiSdk.request({
2720
3173
  url: `/api/blade-system/${ShcpApiSdk.getApiSuffix()}/right/serviceConfig/list`,
@@ -2722,8 +3175,10 @@ class RightServiceConfigApi {
2722
3175
  data,
2723
3176
  });
2724
3177
  }
2725
- // 慢病管理.查询单个(按ID)
2726
- // URL: /api/blade-system/${ShcpApiSdk.getApiSuffix()}/right/serviceConfig/diseaseCare/detail
3178
+ /**
3179
+ * 慢病管理.查询单个(按ID)
3180
+ * URL: /api/blade-system/${ShcpApiSdk.getApiSuffix()}/right/serviceConfig/diseaseCare/detail
3181
+ */
2727
3182
  static getDiseaseCareDetail(id) {
2728
3183
  return ShcpApiSdk.request({
2729
3184
  url: `/api/blade-system/${ShcpApiSdk.getApiSuffix()}/right/serviceConfig/diseaseCare/detail`,
@@ -2731,8 +3186,10 @@ class RightServiceConfigApi {
2731
3186
  params: { id },
2732
3187
  });
2733
3188
  }
2734
- // 慢病管理.查询单个(按条件)
2735
- // URL: /api/blade-system/${ShcpApiSdk.getApiSuffix()}/right/serviceConfig/diseaseCare/get
3189
+ /**
3190
+ * 慢病管理.查询单个(按条件)
3191
+ * URL: /api/blade-system/${ShcpApiSdk.getApiSuffix()}/right/serviceConfig/diseaseCare/get
3192
+ */
2736
3193
  static getDiseaseCareConfig(data) {
2737
3194
  return ShcpApiSdk.request({
2738
3195
  url: `/api/blade-system/${ShcpApiSdk.getApiSuffix()}/right/serviceConfig/diseaseCare/get`,
@@ -2740,8 +3197,10 @@ class RightServiceConfigApi {
2740
3197
  data,
2741
3198
  });
2742
3199
  }
2743
- // 课题研究.查询单个(按ID)
2744
- // URL: /api/blade-system/${ShcpApiSdk.getApiSuffix()}/right/serviceConfig/healthStudy/detail
3200
+ /**
3201
+ * 课题研究.查询单个(按ID)
3202
+ * URL: /api/blade-system/${ShcpApiSdk.getApiSuffix()}/right/serviceConfig/healthStudy/detail
3203
+ */
2745
3204
  static getHealthStudyDetail(id) {
2746
3205
  return ShcpApiSdk.request({
2747
3206
  url: `/api/blade-system/${ShcpApiSdk.getApiSuffix()}/right/serviceConfig/healthStudy/detail`,
@@ -2749,8 +3208,10 @@ class RightServiceConfigApi {
2749
3208
  params: { id },
2750
3209
  });
2751
3210
  }
2752
- // 课题研究.查询单个(按条件)
2753
- // URL: /api/blade-system/${ShcpApiSdk.getApiSuffix()}/right/serviceConfig/healthStudy/get
3211
+ /**
3212
+ * 课题研究.查询单个(按条件)
3213
+ * URL: /api/blade-system/${ShcpApiSdk.getApiSuffix()}/right/serviceConfig/healthStudy/get
3214
+ */
2754
3215
  static getHealthStudyConfig(data) {
2755
3216
  return ShcpApiSdk.request({
2756
3217
  url: `/api/blade-system/${ShcpApiSdk.getApiSuffix()}/right/serviceConfig/healthStudy/get`,
@@ -2758,8 +3219,10 @@ class RightServiceConfigApi {
2758
3219
  data,
2759
3220
  });
2760
3221
  }
2761
- // 健康自测.查询单个(按条件)
2762
- // URL: /api/blade-system/${ShcpApiSdk.getApiSuffix()}/right/serviceConfig/healthSelfAssessment/get
3222
+ /**
3223
+ * 健康自测.查询单个(按条件)
3224
+ * URL: /api/blade-system/${ShcpApiSdk.getApiSuffix()}/right/serviceConfig/healthSelfAssessment/get
3225
+ */
2763
3226
  static getHealthSelfAssessmentConfig(data) {
2764
3227
  return ShcpApiSdk.request({
2765
3228
  url: `/api/blade-system/${ShcpApiSdk.getApiSuffix()}/right/serviceConfig/healthSelfAssessment/get`,
@@ -2767,8 +3230,10 @@ class RightServiceConfigApi {
2767
3230
  data,
2768
3231
  });
2769
3232
  }
2770
- // 健康档案.查询单个(按条件)
2771
- // URL: /api/blade-system/${ShcpApiSdk.getApiSuffix()}/right/serviceConfig/healthProfile/get
3233
+ /**
3234
+ * 健康档案.查询单个(按条件)
3235
+ * URL: /api/blade-system/${ShcpApiSdk.getApiSuffix()}/right/serviceConfig/healthProfile/get
3236
+ */
2772
3237
  static getHealthProfileConfig(data) {
2773
3238
  return ShcpApiSdk.request({
2774
3239
  url: `/api/blade-system/${ShcpApiSdk.getApiSuffix()}/right/serviceConfig/healthProfile/get`,
@@ -2776,8 +3241,10 @@ class RightServiceConfigApi {
2776
3241
  data,
2777
3242
  });
2778
3243
  }
2779
- // 健康工具.查询单个(按条件)
2780
- // URL: /api/blade-system/${ShcpApiSdk.getApiSuffix()}/right/serviceConfig/healthTool/get
3244
+ /**
3245
+ * 健康工具.查询单个(按条件)
3246
+ * URL: /api/blade-system/${ShcpApiSdk.getApiSuffix()}/right/serviceConfig/healthTool/get
3247
+ */
2781
3248
  static getHealthToolConfig(data) {
2782
3249
  return ShcpApiSdk.request({
2783
3250
  url: `/api/blade-system/${ShcpApiSdk.getApiSuffix()}/right/serviceConfig/healthTool/get`,
@@ -2785,8 +3252,10 @@ class RightServiceConfigApi {
2785
3252
  data,
2786
3253
  });
2787
3254
  }
2788
- // 健康咨询.查询单个(按条件)
2789
- // URL: /api/blade-system/${ShcpApiSdk.getApiSuffix()}/right/serviceConfig/healthConsult/get
3255
+ /**
3256
+ * 健康咨询.查询单个(按条件)
3257
+ * URL: /api/blade-system/${ShcpApiSdk.getApiSuffix()}/right/serviceConfig/healthConsult/get
3258
+ */
2790
3259
  static getHealthConsultConfig(data) {
2791
3260
  return ShcpApiSdk.request({
2792
3261
  url: `/api/blade-system/${ShcpApiSdk.getApiSuffix()}/right/serviceConfig/healthConsult/get`,
@@ -2797,8 +3266,10 @@ class RightServiceConfigApi {
2797
3266
  }
2798
3267
 
2799
3268
  class SystemRightApi {
2800
- // 权益详情
2801
- // URL: /api/blade-system/${ShcpApiSdk.getApiSuffix()}/right/detail
3269
+ /**
3270
+ * 权益详情
3271
+ * URL: /api/blade-system/${ShcpApiSdk.getApiSuffix()}/right/detail
3272
+ */
2802
3273
  static getDetail(params) {
2803
3274
  return ShcpApiSdk.request({
2804
3275
  url: `/api/blade-system/${ShcpApiSdk.getApiSuffix()}/right/detail`,
@@ -2806,8 +3277,10 @@ class SystemRightApi {
2806
3277
  params,
2807
3278
  });
2808
3279
  }
2809
- // 权益列表
2810
- // URL: /api/blade-system/${ShcpApiSdk.getApiSuffix()}/right/get
3280
+ /**
3281
+ * 权益列表
3282
+ * URL: /api/blade-system/${ShcpApiSdk.getApiSuffix()}/right/get
3283
+ */
2811
3284
  static get(data) {
2812
3285
  return ShcpApiSdk.request({
2813
3286
  url: `/api/blade-system/${ShcpApiSdk.getApiSuffix()}/right/get`,
@@ -2815,8 +3288,10 @@ class SystemRightApi {
2815
3288
  data,
2816
3289
  });
2817
3290
  }
2818
- // 权益列表
2819
- // URL: /api/shcp-system/${ShcpApiSdk.getApiSuffix()}/right/listByIds
3291
+ /**
3292
+ * 权益列表
3293
+ * URL: /api/shcp-system/${ShcpApiSdk.getApiSuffix()}/right/listByIds
3294
+ */
2820
3295
  static getListByIds(data) {
2821
3296
  return ShcpApiSdk.request({
2822
3297
  url: `/api/shcp-system/${ShcpApiSdk.getApiSuffix()}/right/listByIds`,
@@ -2824,8 +3299,10 @@ class SystemRightApi {
2824
3299
  data,
2825
3300
  });
2826
3301
  }
2827
- // 权益列表
2828
- // URL: /api/blade-system/${ShcpApiSdk.getApiSuffix()}/right/list
3302
+ /**
3303
+ * 权益列表
3304
+ * URL: /api/blade-system/${ShcpApiSdk.getApiSuffix()}/right/list
3305
+ */
2829
3306
  static getList(data) {
2830
3307
  return ShcpApiSdk.request({
2831
3308
  url: `/api/blade-system/${ShcpApiSdk.getApiSuffix()}/right/list`,
@@ -2833,8 +3310,10 @@ class SystemRightApi {
2833
3310
  data,
2834
3311
  });
2835
3312
  }
2836
- // 权益列表
2837
- // URL: /api/blade-system/${ShcpApiSdk.getApiSuffix()}/right/page
3313
+ /**
3314
+ * 权益列表
3315
+ * URL: /api/blade-system/${ShcpApiSdk.getApiSuffix()}/right/page
3316
+ */
2838
3317
  static getPage(data) {
2839
3318
  return ShcpApiSdk.request({
2840
3319
  url: `/api/blade-system/${ShcpApiSdk.getApiSuffix()}/right/page`,
@@ -2846,8 +3325,10 @@ class SystemRightApi {
2846
3325
  },
2847
3326
  });
2848
3327
  }
2849
- // 初始化权益
2850
- // URL: /api/shcp-system/${ShcpApiSdk.getApiSuffix()}/right/initRight
3328
+ /**
3329
+ * 初始化权益
3330
+ * URL: /api/shcp-system/${ShcpApiSdk.getApiSuffix()}/right/initRight
3331
+ */
2851
3332
  static init(params) {
2852
3333
  return ShcpApiSdk.request({
2853
3334
  url: `/api/shcp-system/${ShcpApiSdk.getApiSuffix()}/right/initRight`,
@@ -2855,8 +3336,10 @@ class SystemRightApi {
2855
3336
  params,
2856
3337
  });
2857
3338
  }
2858
- // 复制
2859
- // URL: /api/shcp-system/${ShcpApiSdk.getApiSuffix()}/right/copy
3339
+ /**
3340
+ * 复制
3341
+ * URL: /api/shcp-system/${ShcpApiSdk.getApiSuffix()}/right/copy
3342
+ */
2860
3343
  static copy(data) {
2861
3344
  return ShcpApiSdk.request({
2862
3345
  url: `/api/shcp-system/${ShcpApiSdk.getApiSuffix()}/right/copy`,
@@ -2864,8 +3347,10 @@ class SystemRightApi {
2864
3347
  data,
2865
3348
  });
2866
3349
  }
2867
- // 更新复制配置
2868
- // URL: /api/shcp-system/${ShcpApiSdk.getApiSuffix()}/right/updateCopyConfig
3350
+ /**
3351
+ * 更新复制配置
3352
+ * URL: /api/shcp-system/${ShcpApiSdk.getApiSuffix()}/right/updateCopyConfig
3353
+ */
2869
3354
  static updateCopyConfig(data) {
2870
3355
  return ShcpApiSdk.request({
2871
3356
  url: `/api/shcp-system/${ShcpApiSdk.getApiSuffix()}/right/updateCopyConfig`,
@@ -2876,8 +3361,10 @@ class SystemRightApi {
2876
3361
  }
2877
3362
 
2878
3363
  class UserGroupApi {
2879
- // 更新用户组
2880
- // URL: /api/blade-system/${ShcpApiSdk.getApiSuffix()}/userGroup/update
3364
+ /**
3365
+ * 更新用户组
3366
+ * URL: /api/blade-system/${ShcpApiSdk.getApiSuffix()}/userGroup/update
3367
+ */
2881
3368
  static update(data) {
2882
3369
  return ShcpApiSdk.request({
2883
3370
  url: `/api/blade-system/${ShcpApiSdk.getApiSuffix()}/userGroup/update`,
@@ -2885,8 +3372,10 @@ class UserGroupApi {
2885
3372
  data,
2886
3373
  });
2887
3374
  }
2888
- // 解绑用户
2889
- // URL: /api/blade-system/${ShcpApiSdk.getApiSuffix()}/userGroup/unbindUser
3375
+ /**
3376
+ * 解绑用户
3377
+ * URL: /api/blade-system/${ShcpApiSdk.getApiSuffix()}/userGroup/unbindUser
3378
+ */
2890
3379
  static unbindUser(data) {
2891
3380
  return ShcpApiSdk.request({
2892
3381
  url: `/api/blade-system/${ShcpApiSdk.getApiSuffix()}/userGroup/unbindUser`,
@@ -2894,8 +3383,10 @@ class UserGroupApi {
2894
3383
  data,
2895
3384
  });
2896
3385
  }
2897
- // 创建用户组
2898
- // URL: /api/blade-system/${ShcpApiSdk.getApiSuffix()}/userGroup/create
3386
+ /**
3387
+ * 创建用户组
3388
+ * URL: /api/blade-system/${ShcpApiSdk.getApiSuffix()}/userGroup/create
3389
+ */
2899
3390
  static create(data) {
2900
3391
  return ShcpApiSdk.request({
2901
3392
  url: `/api/blade-system/${ShcpApiSdk.getApiSuffix()}/userGroup/create`,
@@ -2903,8 +3394,10 @@ class UserGroupApi {
2903
3394
  data,
2904
3395
  });
2905
3396
  }
2906
- // 绑定用户
2907
- // URL: /api/blade-system/${ShcpApiSdk.getApiSuffix()}/userGroup/bindUser
3397
+ /**
3398
+ * 绑定用户
3399
+ * URL: /api/blade-system/${ShcpApiSdk.getApiSuffix()}/userGroup/bindUser
3400
+ */
2908
3401
  static bindUser(data) {
2909
3402
  return ShcpApiSdk.request({
2910
3403
  url: `/api/blade-system/${ShcpApiSdk.getApiSuffix()}/userGroup/bindUser`,
@@ -2912,8 +3405,10 @@ class UserGroupApi {
2912
3405
  data,
2913
3406
  });
2914
3407
  }
2915
- // 获取用户组树
2916
- // URL: /api/blade-system/${ShcpApiSdk.getApiSuffix()}/userGroup/tree
3408
+ /**
3409
+ * 获取用户组树
3410
+ * URL: /api/blade-system/${ShcpApiSdk.getApiSuffix()}/userGroup/tree
3411
+ */
2917
3412
  static getTree(data) {
2918
3413
  return ShcpApiSdk.request({
2919
3414
  url: `/api/blade-system/${ShcpApiSdk.getApiSuffix()}/userGroup/tree`,
@@ -2921,8 +3416,10 @@ class UserGroupApi {
2921
3416
  data,
2922
3417
  });
2923
3418
  }
2924
- // 获取用户组详情
2925
- // URL: /api/blade-system/${ShcpApiSdk.getApiSuffix()}/userGroup/detail
3419
+ /**
3420
+ * 获取用户组详情
3421
+ * URL: /api/blade-system/${ShcpApiSdk.getApiSuffix()}/userGroup/detail
3422
+ */
2926
3423
  static getDetail(id) {
2927
3424
  return ShcpApiSdk.request({
2928
3425
  url: `/api/blade-system/${ShcpApiSdk.getApiSuffix()}/userGroup/detail`,
@@ -2930,8 +3427,10 @@ class UserGroupApi {
2930
3427
  params: { id },
2931
3428
  });
2932
3429
  }
2933
- // 查询医生管理组用户
2934
- // URL: /api/blade-system/${ShcpApiSdk.getApiSuffix()}/userGroup/bladeUserPage
3430
+ /**
3431
+ * 查询医生管理组用户
3432
+ * URL: /api/blade-system/${ShcpApiSdk.getApiSuffix()}/userGroup/bladeUserPage
3433
+ */
2935
3434
  static getBladeUserPage(data) {
2936
3435
  return ShcpApiSdk.request({
2937
3436
  url: `/api/blade-system/${ShcpApiSdk.getApiSuffix()}/userGroup/bladeUserPage`,
@@ -2939,8 +3438,10 @@ class UserGroupApi {
2939
3438
  data,
2940
3439
  });
2941
3440
  }
2942
- // 删除用户组
2943
- // URL: /api/blade-system/${ShcpApiSdk.getApiSuffix()}/userGroup/delete
3441
+ /**
3442
+ * 删除用户组
3443
+ * URL: /api/blade-system/${ShcpApiSdk.getApiSuffix()}/userGroup/delete
3444
+ */
2944
3445
  static delete(data) {
2945
3446
  return ShcpApiSdk.request({
2946
3447
  url: `/api/blade-system/${ShcpApiSdk.getApiSuffix()}/userGroup/delete`,
@@ -2950,5 +3451,5 @@ class UserGroupApi {
2950
3451
  }
2951
3452
  }
2952
3453
 
2953
- export { AggregateType, AppCategory, AppCategoryOptions, AppClientApi, AppClientPageConfigApi, AppClientSettingApi, AppPlatformType, CommonDictApi, CommonRightApi, ConsumerApi, ConsumerBindApi, ConsumerDeviceApi, ConsumerDeviceStatus, ConsumerDeviceStatusOptions, ConsumerFavoriteApi, ConsumerMarkType, ConsumerMarkTypeOptions, ConsumerRightStatus, ConsumerRightStatusOptions, DeliveryMethod, DeliveryMethodOptions, DeviceApi, DeviceStatus, DeviceStatusOptions, DeviceType, DeviceTypeOptions, DeviceUserApi, DiseaseCareServiceFlowStatusOptions, ErrCode, FileType, FileTypeOptions, Gender, GenderOptions, GroupJoinType, GroupJoinTypeOptions, HealthCommonApi, HealthMetricApi, HealthProfileApi, HealthRecordType, HealthRecordTypeOptions, HealthSelfAssessApi, HealthServiceType, HealthServiceTypeOptions, HealthStudyPlanExecMethodOptions, HealthStudyServiceFlowStatusOptions, HealthToolApi, HelpCenterApi, HuaWeiWatchMetricCategory, ImUserApi, InterviewServiceTaskStatusOptions, 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 };
3454
+ 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 };
2954
3455
  //# sourceMappingURL=index.esm.js.map