@gizone/rrs-client 4.2.0-alpha.301 → 4.2.0-alpha.304

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 (33) hide show
  1. package/.openapi-generator/FILES +3 -0
  2. package/apis/access-api.ts +89 -0
  3. package/dist/apis/access-api.d.ts +47 -0
  4. package/dist/apis/access-api.js +69 -0
  5. package/dist/esm/apis/access-api.d.ts +47 -0
  6. package/dist/esm/apis/access-api.js +69 -0
  7. package/dist/esm/models/access-appointment-record-details-dto.d.ts +6 -0
  8. package/dist/esm/models/access-appointment-record-process-details-dto.d.ts +81 -0
  9. package/dist/esm/models/access-appointment-record-process-details-dto.js +14 -0
  10. package/dist/esm/models/access-appointment-record-process-details-user-info.d.ts +36 -0
  11. package/dist/esm/models/access-appointment-record-process-details-user-info.js +14 -0
  12. package/dist/esm/models/index.d.ts +3 -0
  13. package/dist/esm/models/index.js +3 -0
  14. package/dist/esm/models/json-result-list-access-appointment-record-process-details-dto.d.ts +62 -0
  15. package/dist/esm/models/json-result-list-access-appointment-record-process-details-dto.js +14 -0
  16. package/dist/esm/models/sys-user.d.ts +4 -4
  17. package/dist/models/access-appointment-record-details-dto.d.ts +6 -0
  18. package/dist/models/access-appointment-record-process-details-dto.d.ts +81 -0
  19. package/dist/models/access-appointment-record-process-details-dto.js +15 -0
  20. package/dist/models/access-appointment-record-process-details-user-info.d.ts +36 -0
  21. package/dist/models/access-appointment-record-process-details-user-info.js +15 -0
  22. package/dist/models/index.d.ts +3 -0
  23. package/dist/models/index.js +3 -0
  24. package/dist/models/json-result-list-access-appointment-record-process-details-dto.d.ts +62 -0
  25. package/dist/models/json-result-list-access-appointment-record-process-details-dto.js +15 -0
  26. package/dist/models/sys-user.d.ts +4 -4
  27. package/models/access-appointment-record-details-dto.ts +6 -0
  28. package/models/access-appointment-record-process-details-dto.ts +95 -0
  29. package/models/access-appointment-record-process-details-user-info.ts +42 -0
  30. package/models/index.ts +3 -0
  31. package/models/json-result-list-access-appointment-record-process-details-dto.ts +72 -0
  32. package/models/sys-user.ts +4 -4
  33. package/package.json +1 -1
@@ -0,0 +1,72 @@
1
+ /* tslint:disable */
2
+ /* eslint-disable */
3
+ /**
4
+ * OpenAPI definition
5
+ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
6
+ *
7
+ * The version of the OpenAPI document: v0
8
+ *
9
+ *
10
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
11
+ * https://openapi-generator.tech
12
+ * Do not edit the class manually.
13
+ */
14
+
15
+
16
+ // May contain unused imports in some cases
17
+ // @ts-ignore
18
+ import type { AccessAppointmentRecordProcessDetailsDto } from './access-appointment-record-process-details-dto';
19
+ // May contain unused imports in some cases
20
+ // @ts-ignore
21
+ import type { BaseErrorResult } from './base-error-result';
22
+
23
+ /**
24
+ *
25
+ * @export
26
+ * @interface JsonResultListAccessAppointmentRecordProcessDetailsDto
27
+ */
28
+ export interface JsonResultListAccessAppointmentRecordProcessDetailsDto {
29
+ /**
30
+ * 错误码,0:成功,其他:失败
31
+ * @type {number}
32
+ * @memberof JsonResultListAccessAppointmentRecordProcessDetailsDto
33
+ */
34
+ 'code'?: number;
35
+ /**
36
+ * 错误消息
37
+ * @type {string}
38
+ * @memberof JsonResultListAccessAppointmentRecordProcessDetailsDto
39
+ */
40
+ 'msg'?: string;
41
+ /**
42
+ * 错误堆栈
43
+ * @type {string}
44
+ * @memberof JsonResultListAccessAppointmentRecordProcessDetailsDto
45
+ */
46
+ 'stacks'?: string;
47
+ /**
48
+ * 返回数据,可以是任意类型的值
49
+ * @type {Array<AccessAppointmentRecordProcessDetailsDto>}
50
+ * @memberof JsonResultListAccessAppointmentRecordProcessDetailsDto
51
+ */
52
+ 'data'?: Array<AccessAppointmentRecordProcessDetailsDto> | null;
53
+ /**
54
+ *
55
+ * @type {BaseErrorResult}
56
+ * @memberof JsonResultListAccessAppointmentRecordProcessDetailsDto
57
+ */
58
+ 'error'?: BaseErrorResult | null;
59
+ /**
60
+ * 日志追踪ID
61
+ * @type {string}
62
+ * @memberof JsonResultListAccessAppointmentRecordProcessDetailsDto
63
+ */
64
+ 'traceId'?: string | null;
65
+ /**
66
+ * requestId
67
+ * @type {string}
68
+ * @memberof JsonResultListAccessAppointmentRecordProcessDetailsDto
69
+ */
70
+ 'requestId'?: string | null;
71
+ }
72
+
@@ -379,15 +379,15 @@ export interface SysUser {
379
379
  'userAttachments'?: Array<SysUserAttachmentInfo>;
380
380
  /**
381
381
  *
382
- * @type {string}
382
+ * @type {number}
383
383
  * @memberof SysUser
384
384
  */
385
- 'cid'?: string;
385
+ 'cuserId'?: number;
386
386
  /**
387
387
  *
388
- * @type {number}
388
+ * @type {string}
389
389
  * @memberof SysUser
390
390
  */
391
- 'cuserId'?: number;
391
+ 'cid'?: string;
392
392
  }
393
393
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@gizone/rrs-client",
3
- "version": "4.2.0-alpha.301",
3
+ "version": "4.2.0-alpha.304",
4
4
  "description": "OpenAPI client for @gizone/rrs-client",
5
5
  "author": "OpenAPI-Generator Contributors",
6
6
  "repository": {