@gizone/rrs-client 4.2.0-alpha.331 → 4.2.0-alpha.334

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 (47) hide show
  1. package/.openapi-generator/FILES +4 -0
  2. package/apis/access-api.ts +272 -0
  3. package/dist/apis/access-api.d.ts +145 -0
  4. package/dist/apis/access-api.js +176 -0
  5. package/dist/esm/apis/access-api.d.ts +145 -0
  6. package/dist/esm/apis/access-api.js +176 -0
  7. package/dist/esm/models/access-appointment-process-type-enum.d.ts +22 -0
  8. package/dist/esm/models/access-appointment-process-type-enum.js +23 -0
  9. package/dist/esm/models/access-appointment-record-details-dto.d.ts +7 -0
  10. package/dist/esm/models/access-appointment-record-process-approval-user-dto.d.ts +49 -0
  11. package/dist/esm/models/access-appointment-record-process-approval-user-dto.js +14 -0
  12. package/dist/esm/models/access-lane-sync-vo.d.ts +42 -0
  13. package/dist/esm/models/access-lane-sync-vo.js +14 -0
  14. package/dist/esm/models/index.d.ts +4 -0
  15. package/dist/esm/models/index.js +4 -0
  16. package/dist/esm/models/park-info-dto.d.ts +12 -0
  17. package/dist/esm/models/sys-post.d.ts +6 -0
  18. package/dist/esm/models/sys-role.d.ts +6 -0
  19. package/dist/esm/models/sys-user.d.ts +14 -7
  20. package/dist/esm/models/user-source-enum.d.ts +21 -0
  21. package/dist/esm/models/user-source-enum.js +22 -0
  22. package/dist/models/access-appointment-process-type-enum.d.ts +22 -0
  23. package/dist/models/access-appointment-process-type-enum.js +26 -0
  24. package/dist/models/access-appointment-record-details-dto.d.ts +7 -0
  25. package/dist/models/access-appointment-record-process-approval-user-dto.d.ts +49 -0
  26. package/dist/models/access-appointment-record-process-approval-user-dto.js +15 -0
  27. package/dist/models/access-lane-sync-vo.d.ts +42 -0
  28. package/dist/models/access-lane-sync-vo.js +15 -0
  29. package/dist/models/index.d.ts +4 -0
  30. package/dist/models/index.js +4 -0
  31. package/dist/models/park-info-dto.d.ts +12 -0
  32. package/dist/models/sys-post.d.ts +6 -0
  33. package/dist/models/sys-role.d.ts +6 -0
  34. package/dist/models/sys-user.d.ts +14 -7
  35. package/dist/models/user-source-enum.d.ts +21 -0
  36. package/dist/models/user-source-enum.js +25 -0
  37. package/models/access-appointment-process-type-enum.ts +32 -0
  38. package/models/access-appointment-record-details-dto.ts +9 -0
  39. package/models/access-appointment-record-process-approval-user-dto.ts +59 -0
  40. package/models/access-lane-sync-vo.ts +48 -0
  41. package/models/index.ts +4 -0
  42. package/models/park-info-dto.ts +12 -0
  43. package/models/sys-post.ts +6 -0
  44. package/models/sys-role.ts +6 -0
  45. package/models/sys-user.ts +18 -7
  46. package/models/user-source-enum.ts +31 -0
  47. package/package.json +1 -1
@@ -134,6 +134,72 @@ export const AccessApiAxiosParamCreator = function (configuration) {
134
134
  options: localVarRequestOptions,
135
135
  };
136
136
  }),
137
+ /**
138
+ *
139
+ * @summary 导出出入预约记录
140
+ * @param {number} parkId 园区ID
141
+ * @param {string} [searchValue] 搜索值
142
+ * @param {AccessAppointmentSourceEnum} [appointmentSource] 预约来源
143
+ * @param {AccessDirectionEnum} [accessDirection] 出入方向
144
+ * @param {Array<AccessVisitorPersonTypeEnum>} [accessVisitorPersonTypes] 访问人员类型
145
+ * @param {Array<AccessAppointmentStatusEnum>} [appointmentStatuses] 预约状态
146
+ * @param {string} [startTime] 预约开始时间
147
+ * @param {string} [endTime] 预约结束时间
148
+ * @param {*} [options] Override http request option.
149
+ * @throws {RequiredError}
150
+ */
151
+ accessAppointmentRecordExport: (parkId_1, searchValue_1, appointmentSource_1, accessDirection_1, accessVisitorPersonTypes_1, appointmentStatuses_1, startTime_1, endTime_1, ...args_1) => __awaiter(this, [parkId_1, searchValue_1, appointmentSource_1, accessDirection_1, accessVisitorPersonTypes_1, appointmentStatuses_1, startTime_1, endTime_1, ...args_1], void 0, function* (parkId, searchValue, appointmentSource, accessDirection, accessVisitorPersonTypes, appointmentStatuses, startTime, endTime, options = {}) {
152
+ // verify required parameter 'parkId' is not null or undefined
153
+ assertParamExists('accessAppointmentRecordExport', 'parkId', parkId);
154
+ const localVarPath = `/gizone/access/appointment-record/export`;
155
+ // use dummy base URL string because the URL constructor only accepts absolute URLs.
156
+ const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
157
+ let baseOptions;
158
+ if (configuration) {
159
+ baseOptions = configuration.baseOptions;
160
+ }
161
+ const localVarRequestOptions = Object.assign(Object.assign({ method: 'GET' }, baseOptions), options);
162
+ const localVarHeaderParameter = {};
163
+ const localVarQueryParameter = {};
164
+ // authentication tokenScheme required
165
+ // http bearer authentication required
166
+ yield setBearerAuthToObject(localVarHeaderParameter, configuration);
167
+ if (parkId !== undefined) {
168
+ localVarQueryParameter['parkId'] = parkId;
169
+ }
170
+ if (searchValue !== undefined) {
171
+ localVarQueryParameter['searchValue'] = searchValue;
172
+ }
173
+ if (appointmentSource !== undefined) {
174
+ localVarQueryParameter['appointmentSource'] = appointmentSource;
175
+ }
176
+ if (accessDirection !== undefined) {
177
+ localVarQueryParameter['accessDirection'] = accessDirection;
178
+ }
179
+ if (accessVisitorPersonTypes) {
180
+ localVarQueryParameter['accessVisitorPersonTypes'] = accessVisitorPersonTypes;
181
+ }
182
+ if (appointmentStatuses) {
183
+ localVarQueryParameter['appointmentStatuses'] = appointmentStatuses;
184
+ }
185
+ if (startTime !== undefined) {
186
+ localVarQueryParameter['startTime'] = (startTime instanceof Date) ?
187
+ startTime.toISOString() :
188
+ startTime;
189
+ }
190
+ if (endTime !== undefined) {
191
+ localVarQueryParameter['endTime'] = (endTime instanceof Date) ?
192
+ endTime.toISOString() :
193
+ endTime;
194
+ }
195
+ setSearchParams(localVarUrlObj, localVarQueryParameter);
196
+ let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
197
+ localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
198
+ return {
199
+ url: toPathString(localVarUrlObj),
200
+ options: localVarRequestOptions,
201
+ };
202
+ }),
137
203
  /**
138
204
  *
139
205
  * @summary 查询出入预约记录流程详情
@@ -1660,6 +1726,38 @@ export const AccessApiAxiosParamCreator = function (configuration) {
1660
1726
  options: localVarRequestOptions,
1661
1727
  };
1662
1728
  }),
1729
+ /**
1730
+ *
1731
+ * @param {AccessLaneSyncVo} accessLaneSyncVo
1732
+ * @param {*} [options] Override http request option.
1733
+ * @throws {RequiredError}
1734
+ */
1735
+ syncIotLane: (accessLaneSyncVo_1, ...args_1) => __awaiter(this, [accessLaneSyncVo_1, ...args_1], void 0, function* (accessLaneSyncVo, options = {}) {
1736
+ // verify required parameter 'accessLaneSyncVo' is not null or undefined
1737
+ assertParamExists('syncIotLane', 'accessLaneSyncVo', accessLaneSyncVo);
1738
+ const localVarPath = `/gizone/access/lane/syncIotLane`;
1739
+ // use dummy base URL string because the URL constructor only accepts absolute URLs.
1740
+ const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
1741
+ let baseOptions;
1742
+ if (configuration) {
1743
+ baseOptions = configuration.baseOptions;
1744
+ }
1745
+ const localVarRequestOptions = Object.assign(Object.assign({ method: 'POST' }, baseOptions), options);
1746
+ const localVarHeaderParameter = {};
1747
+ const localVarQueryParameter = {};
1748
+ // authentication tokenScheme required
1749
+ // http bearer authentication required
1750
+ yield setBearerAuthToObject(localVarHeaderParameter, configuration);
1751
+ localVarHeaderParameter['Content-Type'] = 'application/json';
1752
+ setSearchParams(localVarUrlObj, localVarQueryParameter);
1753
+ let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
1754
+ localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
1755
+ localVarRequestOptions.data = serializeDataIfNeeded(accessLaneSyncVo, localVarRequestOptions, configuration);
1756
+ return {
1757
+ url: toPathString(localVarUrlObj),
1758
+ options: localVarRequestOptions,
1759
+ };
1760
+ }),
1663
1761
  /**
1664
1762
  *
1665
1763
  * @summary 修改入园条款
@@ -1792,6 +1890,29 @@ export const AccessApiFp = function (configuration) {
1792
1890
  return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
1793
1891
  });
1794
1892
  },
1893
+ /**
1894
+ *
1895
+ * @summary 导出出入预约记录
1896
+ * @param {number} parkId 园区ID
1897
+ * @param {string} [searchValue] 搜索值
1898
+ * @param {AccessAppointmentSourceEnum} [appointmentSource] 预约来源
1899
+ * @param {AccessDirectionEnum} [accessDirection] 出入方向
1900
+ * @param {Array<AccessVisitorPersonTypeEnum>} [accessVisitorPersonTypes] 访问人员类型
1901
+ * @param {Array<AccessAppointmentStatusEnum>} [appointmentStatuses] 预约状态
1902
+ * @param {string} [startTime] 预约开始时间
1903
+ * @param {string} [endTime] 预约结束时间
1904
+ * @param {*} [options] Override http request option.
1905
+ * @throws {RequiredError}
1906
+ */
1907
+ accessAppointmentRecordExport(parkId, searchValue, appointmentSource, accessDirection, accessVisitorPersonTypes, appointmentStatuses, startTime, endTime, options) {
1908
+ return __awaiter(this, void 0, void 0, function* () {
1909
+ var _a, _b, _c;
1910
+ const localVarAxiosArgs = yield localVarAxiosParamCreator.accessAppointmentRecordExport(parkId, searchValue, appointmentSource, accessDirection, accessVisitorPersonTypes, appointmentStatuses, startTime, endTime, options);
1911
+ const localVarOperationServerIndex = (_a = configuration === null || configuration === void 0 ? void 0 : configuration.serverIndex) !== null && _a !== void 0 ? _a : 0;
1912
+ const localVarOperationServerBasePath = (_c = (_b = operationServerMap['AccessApi.accessAppointmentRecordExport']) === null || _b === void 0 ? void 0 : _b[localVarOperationServerIndex]) === null || _c === void 0 ? void 0 : _c.url;
1913
+ return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
1914
+ });
1915
+ },
1795
1916
  /**
1796
1917
  *
1797
1918
  * @summary 查询出入预约记录流程详情
@@ -2468,6 +2589,21 @@ export const AccessApiFp = function (configuration) {
2468
2589
  return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
2469
2590
  });
2470
2591
  },
2592
+ /**
2593
+ *
2594
+ * @param {AccessLaneSyncVo} accessLaneSyncVo
2595
+ * @param {*} [options] Override http request option.
2596
+ * @throws {RequiredError}
2597
+ */
2598
+ syncIotLane(accessLaneSyncVo, options) {
2599
+ return __awaiter(this, void 0, void 0, function* () {
2600
+ var _a, _b, _c;
2601
+ const localVarAxiosArgs = yield localVarAxiosParamCreator.syncIotLane(accessLaneSyncVo, options);
2602
+ const localVarOperationServerIndex = (_a = configuration === null || configuration === void 0 ? void 0 : configuration.serverIndex) !== null && _a !== void 0 ? _a : 0;
2603
+ const localVarOperationServerBasePath = (_c = (_b = operationServerMap['AccessApi.syncIotLane']) === null || _b === void 0 ? void 0 : _b[localVarOperationServerIndex]) === null || _c === void 0 ? void 0 : _c.url;
2604
+ return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
2605
+ });
2606
+ },
2471
2607
  /**
2472
2608
  *
2473
2609
  * @summary 修改入园条款
@@ -2541,6 +2677,16 @@ export const AccessApiFactory = function (configuration, basePath, axios) {
2541
2677
  accessAppointmentRecordDetails(requestParameters, options) {
2542
2678
  return localVarFp.accessAppointmentRecordDetails(requestParameters.id, options).then((request) => request(axios, basePath));
2543
2679
  },
2680
+ /**
2681
+ *
2682
+ * @summary 导出出入预约记录
2683
+ * @param {AccessApiAccessAppointmentRecordExportRequest} requestParameters Request parameters.
2684
+ * @param {*} [options] Override http request option.
2685
+ * @throws {RequiredError}
2686
+ */
2687
+ accessAppointmentRecordExport(requestParameters, options) {
2688
+ return localVarFp.accessAppointmentRecordExport(requestParameters.parkId, requestParameters.searchValue, requestParameters.appointmentSource, requestParameters.accessDirection, requestParameters.accessVisitorPersonTypes, requestParameters.appointmentStatuses, requestParameters.startTime, requestParameters.endTime, options).then((request) => request(axios, basePath));
2689
+ },
2544
2690
  /**
2545
2691
  *
2546
2692
  * @summary 查询出入预约记录流程详情
@@ -2928,6 +3074,15 @@ export const AccessApiFactory = function (configuration, basePath, axios) {
2928
3074
  selectStartUpAdmissionTerms(requestParameters, options) {
2929
3075
  return localVarFp.selectStartUpAdmissionTerms(requestParameters.parkId, requestParameters.type, options).then((request) => request(axios, basePath));
2930
3076
  },
3077
+ /**
3078
+ *
3079
+ * @param {AccessApiSyncIotLaneRequest} requestParameters Request parameters.
3080
+ * @param {*} [options] Override http request option.
3081
+ * @throws {RequiredError}
3082
+ */
3083
+ syncIotLane(requestParameters, options) {
3084
+ return localVarFp.syncIotLane(requestParameters.accessLaneSyncVo, options).then((request) => request(axios, basePath));
3085
+ },
2931
3086
  /**
2932
3087
  *
2933
3088
  * @summary 修改入园条款
@@ -2990,6 +3145,17 @@ export class AccessApi extends BaseAPI {
2990
3145
  accessAppointmentRecordDetails(requestParameters, options) {
2991
3146
  return AccessApiFp(this.configuration).accessAppointmentRecordDetails(requestParameters.id, options).then((request) => request(this.axios, this.basePath));
2992
3147
  }
3148
+ /**
3149
+ *
3150
+ * @summary 导出出入预约记录
3151
+ * @param {AccessApiAccessAppointmentRecordExportRequest} requestParameters Request parameters.
3152
+ * @param {*} [options] Override http request option.
3153
+ * @throws {RequiredError}
3154
+ * @memberof AccessApi
3155
+ */
3156
+ accessAppointmentRecordExport(requestParameters, options) {
3157
+ return AccessApiFp(this.configuration).accessAppointmentRecordExport(requestParameters.parkId, requestParameters.searchValue, requestParameters.appointmentSource, requestParameters.accessDirection, requestParameters.accessVisitorPersonTypes, requestParameters.appointmentStatuses, requestParameters.startTime, requestParameters.endTime, options).then((request) => request(this.axios, this.basePath));
3158
+ }
2993
3159
  /**
2994
3160
  *
2995
3161
  * @summary 查询出入预约记录流程详情
@@ -3416,6 +3582,16 @@ export class AccessApi extends BaseAPI {
3416
3582
  selectStartUpAdmissionTerms(requestParameters, options) {
3417
3583
  return AccessApiFp(this.configuration).selectStartUpAdmissionTerms(requestParameters.parkId, requestParameters.type, options).then((request) => request(this.axios, this.basePath));
3418
3584
  }
3585
+ /**
3586
+ *
3587
+ * @param {AccessApiSyncIotLaneRequest} requestParameters Request parameters.
3588
+ * @param {*} [options] Override http request option.
3589
+ * @throws {RequiredError}
3590
+ * @memberof AccessApi
3591
+ */
3592
+ syncIotLane(requestParameters, options) {
3593
+ return AccessApiFp(this.configuration).syncIotLane(requestParameters.accessLaneSyncVo, options).then((request) => request(this.axios, this.basePath));
3594
+ }
3419
3595
  /**
3420
3596
  *
3421
3597
  * @summary 修改入园条款
@@ -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 {};
@@ -0,0 +1,42 @@
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
+ * @interface AccessLaneSyncVo
16
+ */
17
+ export interface AccessLaneSyncVo {
18
+ /**
19
+ *
20
+ * @type {number}
21
+ * @memberof AccessLaneSyncVo
22
+ */
23
+ 'parkId'?: number;
24
+ /**
25
+ *
26
+ * @type {number}
27
+ * @memberof AccessLaneSyncVo
28
+ */
29
+ 'page'?: number;
30
+ /**
31
+ *
32
+ * @type {number}
33
+ * @memberof AccessLaneSyncVo
34
+ */
35
+ 'pageSize'?: number;
36
+ /**
37
+ * 1 停车场 2出入口 3车道
38
+ * @type {number}
39
+ * @memberof AccessLaneSyncVo
40
+ */
41
+ 'type'?: number;
42
+ }
@@ -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';
@@ -21,6 +23,7 @@ export * from './access-company-config-sort-vo';
21
23
  export * from './access-config-entity';
22
24
  export * from './access-config-vo';
23
25
  export * from './access-direction-enum';
26
+ export * from './access-lane-sync-vo';
24
27
  export * from './access-object-type-enum';
25
28
  export * from './access-reason-enum';
26
29
  export * from './access-record-details-dto';
@@ -395,6 +398,7 @@ export * from './user-excel-dto';
395
398
  export * from './user-roles-and-permissions-dto';
396
399
  export * from './user-settings-entity';
397
400
  export * from './user-settings-update-bo';
401
+ export * from './user-source-enum';
398
402
  export * from './user-whether-privacy-dto';
399
403
  export * from './violation-center-attribute-enum';
400
404
  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';
@@ -21,6 +23,7 @@ export * from './access-company-config-sort-vo';
21
23
  export * from './access-config-entity';
22
24
  export * from './access-config-vo';
23
25
  export * from './access-direction-enum';
26
+ export * from './access-lane-sync-vo';
24
27
  export * from './access-object-type-enum';
25
28
  export * from './access-reason-enum';
26
29
  export * from './access-record-details-dto';
@@ -395,6 +398,7 @@ export * from './user-excel-dto';
395
398
  export * from './user-roles-and-permissions-dto';
396
399
  export * from './user-settings-entity';
397
400
  export * from './user-settings-update-bo';
401
+ export * from './user-source-enum';
398
402
  export * from './user-whether-privacy-dto';
399
403
  export * from './violation-center-attribute-enum';
400
404
  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,12 +357,6 @@ 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>}
@@ -370,14 +365,26 @@ export interface SysUser {
370
365
  'userAttachments'?: Array<SysUserAttachmentInfo>;
371
366
  /**
372
367
  *
368
+ * @type {UserSourceEnum}
369
+ * @memberof SysUser
370
+ */
371
+ 'userSource'?: UserSourceEnum;
372
+ /**
373
+ * 源用户ID
373
374
  * @type {string}
374
375
  * @memberof SysUser
375
376
  */
376
- 'cid'?: string;
377
+ 'sourceUserId'?: string;
377
378
  /**
378
379
  *
379
380
  * @type {number}
380
381
  * @memberof SysUser
381
382
  */
382
383
  'cuserId'?: number;
384
+ /**
385
+ *
386
+ * @type {string}
387
+ * @memberof SysUser
388
+ */
389
+ 'cid'?: string;
383
390
  }
@@ -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
+ };