@gizone/rrs-client 4.2.0-alpha.330 → 4.2.0-alpha.333

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 (37) hide show
  1. package/.openapi-generator/FILES +3 -0
  2. package/dist/esm/models/access-appointment-process-type-enum.d.ts +22 -0
  3. package/dist/esm/models/access-appointment-process-type-enum.js +23 -0
  4. package/dist/esm/models/access-appointment-record-details-dto.d.ts +7 -0
  5. package/dist/esm/models/access-appointment-record-process-approval-user-dto.d.ts +49 -0
  6. package/dist/esm/models/access-appointment-record-process-approval-user-dto.js +14 -0
  7. package/dist/esm/models/index.d.ts +3 -0
  8. package/dist/esm/models/index.js +3 -0
  9. package/dist/esm/models/park-info-dto.d.ts +12 -0
  10. package/dist/esm/models/sys-post.d.ts +6 -0
  11. package/dist/esm/models/sys-role.d.ts +6 -0
  12. package/dist/esm/models/sys-user.d.ts +13 -6
  13. package/dist/esm/models/user-source-enum.d.ts +21 -0
  14. package/dist/esm/models/user-source-enum.js +22 -0
  15. package/dist/models/access-appointment-process-type-enum.d.ts +22 -0
  16. package/dist/models/access-appointment-process-type-enum.js +26 -0
  17. package/dist/models/access-appointment-record-details-dto.d.ts +7 -0
  18. package/dist/models/access-appointment-record-process-approval-user-dto.d.ts +49 -0
  19. package/dist/models/access-appointment-record-process-approval-user-dto.js +15 -0
  20. package/dist/models/index.d.ts +3 -0
  21. package/dist/models/index.js +3 -0
  22. package/dist/models/park-info-dto.d.ts +12 -0
  23. package/dist/models/sys-post.d.ts +6 -0
  24. package/dist/models/sys-role.d.ts +6 -0
  25. package/dist/models/sys-user.d.ts +13 -6
  26. package/dist/models/user-source-enum.d.ts +21 -0
  27. package/dist/models/user-source-enum.js +25 -0
  28. package/models/access-appointment-process-type-enum.ts +32 -0
  29. package/models/access-appointment-record-details-dto.ts +9 -0
  30. package/models/access-appointment-record-process-approval-user-dto.ts +59 -0
  31. package/models/index.ts +3 -0
  32. package/models/park-info-dto.ts +12 -0
  33. package/models/sys-post.ts +6 -0
  34. package/models/sys-role.ts +6 -0
  35. package/models/sys-user.ts +17 -6
  36. package/models/user-source-enum.ts +31 -0
  37. package/package.json +1 -1
@@ -43,11 +43,13 @@ git_push.sh
43
43
  index.ts
44
44
  models/access-abnormal-type-enum.ts
45
45
  models/access-appointment-internal-status-enum.ts
46
+ models/access-appointment-process-type-enum.ts
46
47
  models/access-appointment-record-add-vo.ts
47
48
  models/access-appointment-record-approval-vo.ts
48
49
  models/access-appointment-record-details-dto.ts
49
50
  models/access-appointment-record-in-other-info-vo.ts
50
51
  models/access-appointment-record-out-other-info-vo.ts
52
+ models/access-appointment-record-process-approval-user-dto.ts
51
53
  models/access-appointment-record-process-details-dto.ts
52
54
  models/access-appointment-record-process-details-user-info.ts
53
55
  models/access-appointment-source-enum.ts
@@ -439,6 +441,7 @@ models/user-excel-dto.ts
439
441
  models/user-roles-and-permissions-dto.ts
440
442
  models/user-settings-entity.ts
441
443
  models/user-settings-update-bo.ts
444
+ models/user-source-enum.ts
442
445
  models/user-whether-privacy-dto.ts
443
446
  models/violation-center-attribute-enum.ts
444
447
  models/violation-decision-vo.ts
@@ -0,0 +1,22 @@
1
+ /**
2
+ * OpenAPI definition
3
+ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
4
+ *
5
+ * The version of the OpenAPI document: v0
6
+ *
7
+ *
8
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
9
+ * https://openapi-generator.tech
10
+ * Do not edit the class manually.
11
+ */
12
+ /**
13
+ * 预约处理类型枚举
14
+ * @export
15
+ * @enum {string}
16
+ */
17
+ export declare const AccessAppointmentProcessTypeEnum: {
18
+ readonly Initiate: "INITIATE";
19
+ readonly BusinessApproval: "BUSINESS_APPROVAL";
20
+ readonly ParkApproval: "PARK_APPROVAL";
21
+ };
22
+ export type AccessAppointmentProcessTypeEnum = typeof AccessAppointmentProcessTypeEnum[keyof typeof AccessAppointmentProcessTypeEnum];
@@ -0,0 +1,23 @@
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
+ * @export
17
+ * @enum {string}
18
+ */
19
+ export const AccessAppointmentProcessTypeEnum = {
20
+ Initiate: 'INITIATE',
21
+ BusinessApproval: 'BUSINESS_APPROVAL',
22
+ ParkApproval: 'PARK_APPROVAL'
23
+ };
@@ -12,6 +12,7 @@
12
12
  import type { AccessAppointmentInternalStatusEnum } from './access-appointment-internal-status-enum';
13
13
  import type { AccessAppointmentRecordInOtherInfoVo } from './access-appointment-record-in-other-info-vo';
14
14
  import type { AccessAppointmentRecordOutOtherInfoVo } from './access-appointment-record-out-other-info-vo';
15
+ import type { AccessAppointmentRecordProcessApprovalUserDto } from './access-appointment-record-process-approval-user-dto';
15
16
  import type { AccessAppointmentSourceEnum } from './access-appointment-source-enum';
16
17
  import type { AccessAppointmentStatusEnum } from './access-appointment-status-enum';
17
18
  import type { AccessDirectionEnum } from './access-direction-enum';
@@ -187,4 +188,10 @@ export interface AccessAppointmentRecordDetailsDto {
187
188
  * @memberof AccessAppointmentRecordDetailsDto
188
189
  */
189
190
  'appointmentTime'?: string;
191
+ /**
192
+ *
193
+ * @type {AccessAppointmentRecordProcessApprovalUserDto}
194
+ * @memberof AccessAppointmentRecordDetailsDto
195
+ */
196
+ 'approvalUser'?: AccessAppointmentRecordProcessApprovalUserDto;
190
197
  }
@@ -0,0 +1,49 @@
1
+ /**
2
+ * OpenAPI definition
3
+ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
4
+ *
5
+ * The version of the OpenAPI document: v0
6
+ *
7
+ *
8
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
9
+ * https://openapi-generator.tech
10
+ * Do not edit the class manually.
11
+ */
12
+ import type { AccessAppointmentProcessTypeEnum } from './access-appointment-process-type-enum';
13
+ /**
14
+ * 出入预约记录审批人信息数据传输对象
15
+ * @export
16
+ * @interface AccessAppointmentRecordProcessApprovalUserDto
17
+ */
18
+ export interface AccessAppointmentRecordProcessApprovalUserDto {
19
+ /**
20
+ * 用户ID
21
+ * @type {number}
22
+ * @memberof AccessAppointmentRecordProcessApprovalUserDto
23
+ */
24
+ 'userId'?: number;
25
+ /**
26
+ * 用户名称
27
+ * @type {string}
28
+ * @memberof AccessAppointmentRecordProcessApprovalUserDto
29
+ */
30
+ 'userName'?: string;
31
+ /**
32
+ * 用户部门名称
33
+ * @type {string}
34
+ * @memberof AccessAppointmentRecordProcessApprovalUserDto
35
+ */
36
+ 'userDeptName'?: string;
37
+ /**
38
+ * 审批时间
39
+ * @type {string}
40
+ * @memberof AccessAppointmentRecordProcessApprovalUserDto
41
+ */
42
+ 'approvalTime'?: string;
43
+ /**
44
+ *
45
+ * @type {AccessAppointmentProcessTypeEnum}
46
+ * @memberof AccessAppointmentRecordProcessApprovalUserDto
47
+ */
48
+ 'appointmentProcessType'?: AccessAppointmentProcessTypeEnum;
49
+ }
@@ -0,0 +1,14 @@
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
+ export {};
@@ -1,10 +1,12 @@
1
1
  export * from './access-abnormal-type-enum';
2
2
  export * from './access-appointment-internal-status-enum';
3
+ export * from './access-appointment-process-type-enum';
3
4
  export * from './access-appointment-record-add-vo';
4
5
  export * from './access-appointment-record-approval-vo';
5
6
  export * from './access-appointment-record-details-dto';
6
7
  export * from './access-appointment-record-in-other-info-vo';
7
8
  export * from './access-appointment-record-out-other-info-vo';
9
+ export * from './access-appointment-record-process-approval-user-dto';
8
10
  export * from './access-appointment-record-process-details-dto';
9
11
  export * from './access-appointment-record-process-details-user-info';
10
12
  export * from './access-appointment-source-enum';
@@ -395,6 +397,7 @@ export * from './user-excel-dto';
395
397
  export * from './user-roles-and-permissions-dto';
396
398
  export * from './user-settings-entity';
397
399
  export * from './user-settings-update-bo';
400
+ export * from './user-source-enum';
398
401
  export * from './user-whether-privacy-dto';
399
402
  export * from './violation-center-attribute-enum';
400
403
  export * from './violation-decision-vo';
@@ -1,10 +1,12 @@
1
1
  export * from './access-abnormal-type-enum';
2
2
  export * from './access-appointment-internal-status-enum';
3
+ export * from './access-appointment-process-type-enum';
3
4
  export * from './access-appointment-record-add-vo';
4
5
  export * from './access-appointment-record-approval-vo';
5
6
  export * from './access-appointment-record-details-dto';
6
7
  export * from './access-appointment-record-in-other-info-vo';
7
8
  export * from './access-appointment-record-out-other-info-vo';
9
+ export * from './access-appointment-record-process-approval-user-dto';
8
10
  export * from './access-appointment-record-process-details-dto';
9
11
  export * from './access-appointment-record-process-details-user-info';
10
12
  export * from './access-appointment-source-enum';
@@ -395,6 +397,7 @@ export * from './user-excel-dto';
395
397
  export * from './user-roles-and-permissions-dto';
396
398
  export * from './user-settings-entity';
397
399
  export * from './user-settings-update-bo';
400
+ export * from './user-source-enum';
398
401
  export * from './user-whether-privacy-dto';
399
402
  export * from './violation-center-attribute-enum';
400
403
  export * from './violation-decision-vo';
@@ -64,6 +64,18 @@ export interface ParkInfoDTO {
64
64
  * @memberof ParkInfoDTO
65
65
  */
66
66
  'ancestors'?: string;
67
+ /**
68
+ * 集团ID
69
+ * @type {number}
70
+ * @memberof ParkInfoDTO
71
+ */
72
+ 'groupId'?: number;
73
+ /**
74
+ * 大区ID
75
+ * @type {number}
76
+ * @memberof ParkInfoDTO
77
+ */
78
+ 'areaId'?: number;
67
79
  /**
68
80
  * 园区平面图
69
81
  * @type {string}
@@ -95,4 +95,10 @@ export interface SysPost {
95
95
  * @memberof SysPost
96
96
  */
97
97
  'flag'?: boolean;
98
+ /**
99
+ *
100
+ * @type {number}
101
+ * @memberof SysPost
102
+ */
103
+ 'parkId'?: number;
98
104
  }
@@ -143,4 +143,10 @@ export interface SysRole {
143
143
  * @memberof SysRole
144
144
  */
145
145
  'parkId'?: number;
146
+ /**
147
+ *
148
+ * @type {number}
149
+ * @memberof SysRole
150
+ */
151
+ 'type'?: number;
146
152
  }
@@ -12,6 +12,7 @@
12
12
  import type { SysDept } from './sys-dept';
13
13
  import type { SysRole } from './sys-role';
14
14
  import type { SysUserAttachmentInfo } from './sys-user-attachment-info';
15
+ import type { UserSourceEnum } from './user-source-enum';
15
16
  /**
16
17
  * 用户对象
17
18
  * @export
@@ -356,18 +357,24 @@ export interface SysUser {
356
357
  * @memberof SysUser
357
358
  */
358
359
  'supplierId'?: number;
359
- /**
360
- * 第三方系统用户编号
361
- * @type {string}
362
- * @memberof SysUser
363
- */
364
- 'userNo'?: string;
365
360
  /**
366
361
  * 用户附件
367
362
  * @type {Array<SysUserAttachmentInfo>}
368
363
  * @memberof SysUser
369
364
  */
370
365
  'userAttachments'?: Array<SysUserAttachmentInfo>;
366
+ /**
367
+ *
368
+ * @type {UserSourceEnum}
369
+ * @memberof SysUser
370
+ */
371
+ 'userSource'?: UserSourceEnum;
372
+ /**
373
+ * 源用户ID
374
+ * @type {string}
375
+ * @memberof SysUser
376
+ */
377
+ 'sourceUserId'?: string;
371
378
  /**
372
379
  *
373
380
  * @type {number}
@@ -0,0 +1,21 @@
1
+ /**
2
+ * OpenAPI definition
3
+ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
4
+ *
5
+ * The version of the OpenAPI document: v0
6
+ *
7
+ *
8
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
9
+ * https://openapi-generator.tech
10
+ * Do not edit the class manually.
11
+ */
12
+ /**
13
+ * 用户来源
14
+ * @export
15
+ * @enum {string}
16
+ */
17
+ export declare const UserSourceEnum: {
18
+ readonly Internal: "INTERNAL";
19
+ readonly Hwork: "HWORK";
20
+ };
21
+ export type UserSourceEnum = typeof UserSourceEnum[keyof typeof UserSourceEnum];
@@ -0,0 +1,22 @@
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
+ * @export
17
+ * @enum {string}
18
+ */
19
+ export const UserSourceEnum = {
20
+ Internal: 'INTERNAL',
21
+ Hwork: 'HWORK'
22
+ };
@@ -0,0 +1,22 @@
1
+ /**
2
+ * OpenAPI definition
3
+ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
4
+ *
5
+ * The version of the OpenAPI document: v0
6
+ *
7
+ *
8
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
9
+ * https://openapi-generator.tech
10
+ * Do not edit the class manually.
11
+ */
12
+ /**
13
+ * 预约处理类型枚举
14
+ * @export
15
+ * @enum {string}
16
+ */
17
+ export declare const AccessAppointmentProcessTypeEnum: {
18
+ readonly Initiate: "INITIATE";
19
+ readonly BusinessApproval: "BUSINESS_APPROVAL";
20
+ readonly ParkApproval: "PARK_APPROVAL";
21
+ };
22
+ export type AccessAppointmentProcessTypeEnum = typeof AccessAppointmentProcessTypeEnum[keyof typeof AccessAppointmentProcessTypeEnum];
@@ -0,0 +1,26 @@
1
+ "use strict";
2
+ /* tslint:disable */
3
+ /* eslint-disable */
4
+ /**
5
+ * OpenAPI definition
6
+ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
7
+ *
8
+ * The version of the OpenAPI document: v0
9
+ *
10
+ *
11
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
12
+ * https://openapi-generator.tech
13
+ * Do not edit the class manually.
14
+ */
15
+ Object.defineProperty(exports, "__esModule", { value: true });
16
+ exports.AccessAppointmentProcessTypeEnum = void 0;
17
+ /**
18
+ * 预约处理类型枚举
19
+ * @export
20
+ * @enum {string}
21
+ */
22
+ exports.AccessAppointmentProcessTypeEnum = {
23
+ Initiate: 'INITIATE',
24
+ BusinessApproval: 'BUSINESS_APPROVAL',
25
+ ParkApproval: 'PARK_APPROVAL'
26
+ };
@@ -12,6 +12,7 @@
12
12
  import type { AccessAppointmentInternalStatusEnum } from './access-appointment-internal-status-enum';
13
13
  import type { AccessAppointmentRecordInOtherInfoVo } from './access-appointment-record-in-other-info-vo';
14
14
  import type { AccessAppointmentRecordOutOtherInfoVo } from './access-appointment-record-out-other-info-vo';
15
+ import type { AccessAppointmentRecordProcessApprovalUserDto } from './access-appointment-record-process-approval-user-dto';
15
16
  import type { AccessAppointmentSourceEnum } from './access-appointment-source-enum';
16
17
  import type { AccessAppointmentStatusEnum } from './access-appointment-status-enum';
17
18
  import type { AccessDirectionEnum } from './access-direction-enum';
@@ -187,4 +188,10 @@ export interface AccessAppointmentRecordDetailsDto {
187
188
  * @memberof AccessAppointmentRecordDetailsDto
188
189
  */
189
190
  'appointmentTime'?: string;
191
+ /**
192
+ *
193
+ * @type {AccessAppointmentRecordProcessApprovalUserDto}
194
+ * @memberof AccessAppointmentRecordDetailsDto
195
+ */
196
+ 'approvalUser'?: AccessAppointmentRecordProcessApprovalUserDto;
190
197
  }
@@ -0,0 +1,49 @@
1
+ /**
2
+ * OpenAPI definition
3
+ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
4
+ *
5
+ * The version of the OpenAPI document: v0
6
+ *
7
+ *
8
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
9
+ * https://openapi-generator.tech
10
+ * Do not edit the class manually.
11
+ */
12
+ import type { AccessAppointmentProcessTypeEnum } from './access-appointment-process-type-enum';
13
+ /**
14
+ * 出入预约记录审批人信息数据传输对象
15
+ * @export
16
+ * @interface AccessAppointmentRecordProcessApprovalUserDto
17
+ */
18
+ export interface AccessAppointmentRecordProcessApprovalUserDto {
19
+ /**
20
+ * 用户ID
21
+ * @type {number}
22
+ * @memberof AccessAppointmentRecordProcessApprovalUserDto
23
+ */
24
+ 'userId'?: number;
25
+ /**
26
+ * 用户名称
27
+ * @type {string}
28
+ * @memberof AccessAppointmentRecordProcessApprovalUserDto
29
+ */
30
+ 'userName'?: string;
31
+ /**
32
+ * 用户部门名称
33
+ * @type {string}
34
+ * @memberof AccessAppointmentRecordProcessApprovalUserDto
35
+ */
36
+ 'userDeptName'?: string;
37
+ /**
38
+ * 审批时间
39
+ * @type {string}
40
+ * @memberof AccessAppointmentRecordProcessApprovalUserDto
41
+ */
42
+ 'approvalTime'?: string;
43
+ /**
44
+ *
45
+ * @type {AccessAppointmentProcessTypeEnum}
46
+ * @memberof AccessAppointmentRecordProcessApprovalUserDto
47
+ */
48
+ 'appointmentProcessType'?: AccessAppointmentProcessTypeEnum;
49
+ }
@@ -0,0 +1,15 @@
1
+ "use strict";
2
+ /* tslint:disable */
3
+ /* eslint-disable */
4
+ /**
5
+ * OpenAPI definition
6
+ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
7
+ *
8
+ * The version of the OpenAPI document: v0
9
+ *
10
+ *
11
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
12
+ * https://openapi-generator.tech
13
+ * Do not edit the class manually.
14
+ */
15
+ Object.defineProperty(exports, "__esModule", { value: true });
@@ -1,10 +1,12 @@
1
1
  export * from './access-abnormal-type-enum';
2
2
  export * from './access-appointment-internal-status-enum';
3
+ export * from './access-appointment-process-type-enum';
3
4
  export * from './access-appointment-record-add-vo';
4
5
  export * from './access-appointment-record-approval-vo';
5
6
  export * from './access-appointment-record-details-dto';
6
7
  export * from './access-appointment-record-in-other-info-vo';
7
8
  export * from './access-appointment-record-out-other-info-vo';
9
+ export * from './access-appointment-record-process-approval-user-dto';
8
10
  export * from './access-appointment-record-process-details-dto';
9
11
  export * from './access-appointment-record-process-details-user-info';
10
12
  export * from './access-appointment-source-enum';
@@ -395,6 +397,7 @@ export * from './user-excel-dto';
395
397
  export * from './user-roles-and-permissions-dto';
396
398
  export * from './user-settings-entity';
397
399
  export * from './user-settings-update-bo';
400
+ export * from './user-source-enum';
398
401
  export * from './user-whether-privacy-dto';
399
402
  export * from './violation-center-attribute-enum';
400
403
  export * from './violation-decision-vo';
@@ -16,11 +16,13 @@ var __exportStar = (this && this.__exportStar) || function(m, exports) {
16
16
  Object.defineProperty(exports, "__esModule", { value: true });
17
17
  __exportStar(require("./access-abnormal-type-enum"), exports);
18
18
  __exportStar(require("./access-appointment-internal-status-enum"), exports);
19
+ __exportStar(require("./access-appointment-process-type-enum"), exports);
19
20
  __exportStar(require("./access-appointment-record-add-vo"), exports);
20
21
  __exportStar(require("./access-appointment-record-approval-vo"), exports);
21
22
  __exportStar(require("./access-appointment-record-details-dto"), exports);
22
23
  __exportStar(require("./access-appointment-record-in-other-info-vo"), exports);
23
24
  __exportStar(require("./access-appointment-record-out-other-info-vo"), exports);
25
+ __exportStar(require("./access-appointment-record-process-approval-user-dto"), exports);
24
26
  __exportStar(require("./access-appointment-record-process-details-dto"), exports);
25
27
  __exportStar(require("./access-appointment-record-process-details-user-info"), exports);
26
28
  __exportStar(require("./access-appointment-source-enum"), exports);
@@ -411,6 +413,7 @@ __exportStar(require("./user-excel-dto"), exports);
411
413
  __exportStar(require("./user-roles-and-permissions-dto"), exports);
412
414
  __exportStar(require("./user-settings-entity"), exports);
413
415
  __exportStar(require("./user-settings-update-bo"), exports);
416
+ __exportStar(require("./user-source-enum"), exports);
414
417
  __exportStar(require("./user-whether-privacy-dto"), exports);
415
418
  __exportStar(require("./violation-center-attribute-enum"), exports);
416
419
  __exportStar(require("./violation-decision-vo"), exports);
@@ -64,6 +64,18 @@ export interface ParkInfoDTO {
64
64
  * @memberof ParkInfoDTO
65
65
  */
66
66
  'ancestors'?: string;
67
+ /**
68
+ * 集团ID
69
+ * @type {number}
70
+ * @memberof ParkInfoDTO
71
+ */
72
+ 'groupId'?: number;
73
+ /**
74
+ * 大区ID
75
+ * @type {number}
76
+ * @memberof ParkInfoDTO
77
+ */
78
+ 'areaId'?: number;
67
79
  /**
68
80
  * 园区平面图
69
81
  * @type {string}
@@ -95,4 +95,10 @@ export interface SysPost {
95
95
  * @memberof SysPost
96
96
  */
97
97
  'flag'?: boolean;
98
+ /**
99
+ *
100
+ * @type {number}
101
+ * @memberof SysPost
102
+ */
103
+ 'parkId'?: number;
98
104
  }
@@ -143,4 +143,10 @@ export interface SysRole {
143
143
  * @memberof SysRole
144
144
  */
145
145
  'parkId'?: number;
146
+ /**
147
+ *
148
+ * @type {number}
149
+ * @memberof SysRole
150
+ */
151
+ 'type'?: number;
146
152
  }
@@ -12,6 +12,7 @@
12
12
  import type { SysDept } from './sys-dept';
13
13
  import type { SysRole } from './sys-role';
14
14
  import type { SysUserAttachmentInfo } from './sys-user-attachment-info';
15
+ import type { UserSourceEnum } from './user-source-enum';
15
16
  /**
16
17
  * 用户对象
17
18
  * @export
@@ -356,18 +357,24 @@ export interface SysUser {
356
357
  * @memberof SysUser
357
358
  */
358
359
  'supplierId'?: number;
359
- /**
360
- * 第三方系统用户编号
361
- * @type {string}
362
- * @memberof SysUser
363
- */
364
- 'userNo'?: string;
365
360
  /**
366
361
  * 用户附件
367
362
  * @type {Array<SysUserAttachmentInfo>}
368
363
  * @memberof SysUser
369
364
  */
370
365
  'userAttachments'?: Array<SysUserAttachmentInfo>;
366
+ /**
367
+ *
368
+ * @type {UserSourceEnum}
369
+ * @memberof SysUser
370
+ */
371
+ 'userSource'?: UserSourceEnum;
372
+ /**
373
+ * 源用户ID
374
+ * @type {string}
375
+ * @memberof SysUser
376
+ */
377
+ 'sourceUserId'?: string;
371
378
  /**
372
379
  *
373
380
  * @type {number}
@@ -0,0 +1,21 @@
1
+ /**
2
+ * OpenAPI definition
3
+ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
4
+ *
5
+ * The version of the OpenAPI document: v0
6
+ *
7
+ *
8
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
9
+ * https://openapi-generator.tech
10
+ * Do not edit the class manually.
11
+ */
12
+ /**
13
+ * 用户来源
14
+ * @export
15
+ * @enum {string}
16
+ */
17
+ export declare const UserSourceEnum: {
18
+ readonly Internal: "INTERNAL";
19
+ readonly Hwork: "HWORK";
20
+ };
21
+ export type UserSourceEnum = typeof UserSourceEnum[keyof typeof UserSourceEnum];
@@ -0,0 +1,25 @@
1
+ "use strict";
2
+ /* tslint:disable */
3
+ /* eslint-disable */
4
+ /**
5
+ * OpenAPI definition
6
+ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
7
+ *
8
+ * The version of the OpenAPI document: v0
9
+ *
10
+ *
11
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
12
+ * https://openapi-generator.tech
13
+ * Do not edit the class manually.
14
+ */
15
+ Object.defineProperty(exports, "__esModule", { value: true });
16
+ exports.UserSourceEnum = void 0;
17
+ /**
18
+ * 用户来源
19
+ * @export
20
+ * @enum {string}
21
+ */
22
+ exports.UserSourceEnum = {
23
+ Internal: 'INTERNAL',
24
+ Hwork: 'HWORK'
25
+ };
@@ -0,0 +1,32 @@
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
+
17
+ /**
18
+ * 预约处理类型枚举
19
+ * @export
20
+ * @enum {string}
21
+ */
22
+
23
+ export const AccessAppointmentProcessTypeEnum = {
24
+ Initiate: 'INITIATE',
25
+ BusinessApproval: 'BUSINESS_APPROVAL',
26
+ ParkApproval: 'PARK_APPROVAL'
27
+ } as const;
28
+
29
+ export type AccessAppointmentProcessTypeEnum = typeof AccessAppointmentProcessTypeEnum[keyof typeof AccessAppointmentProcessTypeEnum];
30
+
31
+
32
+
@@ -24,6 +24,9 @@ import type { AccessAppointmentRecordInOtherInfoVo } from './access-appointment-
24
24
  import type { AccessAppointmentRecordOutOtherInfoVo } from './access-appointment-record-out-other-info-vo';
25
25
  // May contain unused imports in some cases
26
26
  // @ts-ignore
27
+ import type { AccessAppointmentRecordProcessApprovalUserDto } from './access-appointment-record-process-approval-user-dto';
28
+ // May contain unused imports in some cases
29
+ // @ts-ignore
27
30
  import type { AccessAppointmentSourceEnum } from './access-appointment-source-enum';
28
31
  // May contain unused imports in some cases
29
32
  // @ts-ignore
@@ -212,6 +215,12 @@ export interface AccessAppointmentRecordDetailsDto {
212
215
  * @memberof AccessAppointmentRecordDetailsDto
213
216
  */
214
217
  'appointmentTime'?: string;
218
+ /**
219
+ *
220
+ * @type {AccessAppointmentRecordProcessApprovalUserDto}
221
+ * @memberof AccessAppointmentRecordDetailsDto
222
+ */
223
+ 'approvalUser'?: AccessAppointmentRecordProcessApprovalUserDto;
215
224
  }
216
225
 
217
226
 
@@ -0,0 +1,59 @@
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 { AccessAppointmentProcessTypeEnum } from './access-appointment-process-type-enum';
19
+
20
+ /**
21
+ * 出入预约记录审批人信息数据传输对象
22
+ * @export
23
+ * @interface AccessAppointmentRecordProcessApprovalUserDto
24
+ */
25
+ export interface AccessAppointmentRecordProcessApprovalUserDto {
26
+ /**
27
+ * 用户ID
28
+ * @type {number}
29
+ * @memberof AccessAppointmentRecordProcessApprovalUserDto
30
+ */
31
+ 'userId'?: number;
32
+ /**
33
+ * 用户名称
34
+ * @type {string}
35
+ * @memberof AccessAppointmentRecordProcessApprovalUserDto
36
+ */
37
+ 'userName'?: string;
38
+ /**
39
+ * 用户部门名称
40
+ * @type {string}
41
+ * @memberof AccessAppointmentRecordProcessApprovalUserDto
42
+ */
43
+ 'userDeptName'?: string;
44
+ /**
45
+ * 审批时间
46
+ * @type {string}
47
+ * @memberof AccessAppointmentRecordProcessApprovalUserDto
48
+ */
49
+ 'approvalTime'?: string;
50
+ /**
51
+ *
52
+ * @type {AccessAppointmentProcessTypeEnum}
53
+ * @memberof AccessAppointmentRecordProcessApprovalUserDto
54
+ */
55
+ 'appointmentProcessType'?: AccessAppointmentProcessTypeEnum;
56
+ }
57
+
58
+
59
+
package/models/index.ts CHANGED
@@ -1,10 +1,12 @@
1
1
  export * from './access-abnormal-type-enum';
2
2
  export * from './access-appointment-internal-status-enum';
3
+ export * from './access-appointment-process-type-enum';
3
4
  export * from './access-appointment-record-add-vo';
4
5
  export * from './access-appointment-record-approval-vo';
5
6
  export * from './access-appointment-record-details-dto';
6
7
  export * from './access-appointment-record-in-other-info-vo';
7
8
  export * from './access-appointment-record-out-other-info-vo';
9
+ export * from './access-appointment-record-process-approval-user-dto';
8
10
  export * from './access-appointment-record-process-details-dto';
9
11
  export * from './access-appointment-record-process-details-user-info';
10
12
  export * from './access-appointment-source-enum';
@@ -395,6 +397,7 @@ export * from './user-excel-dto';
395
397
  export * from './user-roles-and-permissions-dto';
396
398
  export * from './user-settings-entity';
397
399
  export * from './user-settings-update-bo';
400
+ export * from './user-source-enum';
398
401
  export * from './user-whether-privacy-dto';
399
402
  export * from './violation-center-attribute-enum';
400
403
  export * from './violation-decision-vo';
@@ -71,6 +71,18 @@ export interface ParkInfoDTO {
71
71
  * @memberof ParkInfoDTO
72
72
  */
73
73
  'ancestors'?: string;
74
+ /**
75
+ * 集团ID
76
+ * @type {number}
77
+ * @memberof ParkInfoDTO
78
+ */
79
+ 'groupId'?: number;
80
+ /**
81
+ * 大区ID
82
+ * @type {number}
83
+ * @memberof ParkInfoDTO
84
+ */
85
+ 'areaId'?: number;
74
86
  /**
75
87
  * 园区平面图
76
88
  * @type {string}
@@ -98,5 +98,11 @@ export interface SysPost {
98
98
  * @memberof SysPost
99
99
  */
100
100
  'flag'?: boolean;
101
+ /**
102
+ *
103
+ * @type {number}
104
+ * @memberof SysPost
105
+ */
106
+ 'parkId'?: number;
101
107
  }
102
108
 
@@ -146,5 +146,11 @@ export interface SysRole {
146
146
  * @memberof SysRole
147
147
  */
148
148
  'parkId'?: number;
149
+ /**
150
+ *
151
+ * @type {number}
152
+ * @memberof SysRole
153
+ */
154
+ 'type'?: number;
149
155
  }
150
156
 
@@ -22,6 +22,9 @@ import type { SysRole } from './sys-role';
22
22
  // May contain unused imports in some cases
23
23
  // @ts-ignore
24
24
  import type { SysUserAttachmentInfo } from './sys-user-attachment-info';
25
+ // May contain unused imports in some cases
26
+ // @ts-ignore
27
+ import type { UserSourceEnum } from './user-source-enum';
25
28
 
26
29
  /**
27
30
  * 用户对象
@@ -365,18 +368,24 @@ export interface SysUser {
365
368
  * @memberof SysUser
366
369
  */
367
370
  'supplierId'?: number;
368
- /**
369
- * 第三方系统用户编号
370
- * @type {string}
371
- * @memberof SysUser
372
- */
373
- 'userNo'?: string;
374
371
  /**
375
372
  * 用户附件
376
373
  * @type {Array<SysUserAttachmentInfo>}
377
374
  * @memberof SysUser
378
375
  */
379
376
  'userAttachments'?: Array<SysUserAttachmentInfo>;
377
+ /**
378
+ *
379
+ * @type {UserSourceEnum}
380
+ * @memberof SysUser
381
+ */
382
+ 'userSource'?: UserSourceEnum;
383
+ /**
384
+ * 源用户ID
385
+ * @type {string}
386
+ * @memberof SysUser
387
+ */
388
+ 'sourceUserId'?: string;
380
389
  /**
381
390
  *
382
391
  * @type {number}
@@ -391,3 +400,5 @@ export interface SysUser {
391
400
  'cid'?: string;
392
401
  }
393
402
 
403
+
404
+
@@ -0,0 +1,31 @@
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
+
17
+ /**
18
+ * 用户来源
19
+ * @export
20
+ * @enum {string}
21
+ */
22
+
23
+ export const UserSourceEnum = {
24
+ Internal: 'INTERNAL',
25
+ Hwork: 'HWORK'
26
+ } as const;
27
+
28
+ export type UserSourceEnum = typeof UserSourceEnum[keyof typeof UserSourceEnum];
29
+
30
+
31
+
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@gizone/rrs-client",
3
- "version": "4.2.0-alpha.330",
3
+ "version": "4.2.0-alpha.333",
4
4
  "description": "OpenAPI client for @gizone/rrs-client",
5
5
  "author": "OpenAPI-Generator Contributors",
6
6
  "repository": {