@gizone/rrs-client 4.2.0-alpha.306 → 4.2.0-alpha.308
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.openapi-generator/FILES +1 -0
- package/apis/access-api.ts +180 -0
- package/dist/apis/access-api.d.ts +93 -0
- package/dist/apis/access-api.js +140 -0
- package/dist/esm/apis/access-api.d.ts +93 -0
- package/dist/esm/apis/access-api.js +140 -0
- package/dist/esm/models/access-appointment-record-in-other-info-vo.d.ts +4 -4
- package/dist/esm/models/access-record-vehicle-add-vo.d.ts +126 -0
- package/dist/esm/models/access-record-vehicle-add-vo.js +14 -0
- package/dist/esm/models/index.d.ts +1 -0
- package/dist/esm/models/index.js +1 -0
- package/dist/models/access-appointment-record-in-other-info-vo.d.ts +4 -4
- package/dist/models/access-record-vehicle-add-vo.d.ts +126 -0
- package/dist/models/access-record-vehicle-add-vo.js +15 -0
- package/dist/models/index.d.ts +1 -0
- package/dist/models/index.js +1 -0
- package/models/access-appointment-record-in-other-info-vo.ts +4 -4
- package/models/access-record-vehicle-add-vo.ts +132 -0
- package/models/index.ts +1 -0
- package/package.json +1 -1
|
@@ -781,6 +781,72 @@ export const AccessApiAxiosParamCreator = function (configuration) {
|
|
|
781
781
|
options: localVarRequestOptions,
|
|
782
782
|
};
|
|
783
783
|
}),
|
|
784
|
+
/**
|
|
785
|
+
*
|
|
786
|
+
* @summary 新增人员出入记录
|
|
787
|
+
* @param {AccessRecordVehicleAddVo} accessRecordVehicleAddVo
|
|
788
|
+
* @param {*} [options] Override http request option.
|
|
789
|
+
* @throws {RequiredError}
|
|
790
|
+
*/
|
|
791
|
+
accessRecordPersonAdd: (accessRecordVehicleAddVo_1, ...args_1) => __awaiter(this, [accessRecordVehicleAddVo_1, ...args_1], void 0, function* (accessRecordVehicleAddVo, options = {}) {
|
|
792
|
+
// verify required parameter 'accessRecordVehicleAddVo' is not null or undefined
|
|
793
|
+
assertParamExists('accessRecordPersonAdd', 'accessRecordVehicleAddVo', accessRecordVehicleAddVo);
|
|
794
|
+
const localVarPath = `/access/record/person`;
|
|
795
|
+
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
796
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
797
|
+
let baseOptions;
|
|
798
|
+
if (configuration) {
|
|
799
|
+
baseOptions = configuration.baseOptions;
|
|
800
|
+
}
|
|
801
|
+
const localVarRequestOptions = Object.assign(Object.assign({ method: 'POST' }, baseOptions), options);
|
|
802
|
+
const localVarHeaderParameter = {};
|
|
803
|
+
const localVarQueryParameter = {};
|
|
804
|
+
// authentication tokenScheme required
|
|
805
|
+
// http bearer authentication required
|
|
806
|
+
yield setBearerAuthToObject(localVarHeaderParameter, configuration);
|
|
807
|
+
localVarHeaderParameter['Content-Type'] = 'application/json';
|
|
808
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
809
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
810
|
+
localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
|
|
811
|
+
localVarRequestOptions.data = serializeDataIfNeeded(accessRecordVehicleAddVo, localVarRequestOptions, configuration);
|
|
812
|
+
return {
|
|
813
|
+
url: toPathString(localVarUrlObj),
|
|
814
|
+
options: localVarRequestOptions,
|
|
815
|
+
};
|
|
816
|
+
}),
|
|
817
|
+
/**
|
|
818
|
+
*
|
|
819
|
+
* @summary 新增车辆出入记录
|
|
820
|
+
* @param {AccessRecordVehicleAddVo} accessRecordVehicleAddVo
|
|
821
|
+
* @param {*} [options] Override http request option.
|
|
822
|
+
* @throws {RequiredError}
|
|
823
|
+
*/
|
|
824
|
+
accessRecordVehicleAdd: (accessRecordVehicleAddVo_1, ...args_1) => __awaiter(this, [accessRecordVehicleAddVo_1, ...args_1], void 0, function* (accessRecordVehicleAddVo, options = {}) {
|
|
825
|
+
// verify required parameter 'accessRecordVehicleAddVo' is not null or undefined
|
|
826
|
+
assertParamExists('accessRecordVehicleAdd', 'accessRecordVehicleAddVo', accessRecordVehicleAddVo);
|
|
827
|
+
const localVarPath = `/access/record/vehicle`;
|
|
828
|
+
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
829
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
830
|
+
let baseOptions;
|
|
831
|
+
if (configuration) {
|
|
832
|
+
baseOptions = configuration.baseOptions;
|
|
833
|
+
}
|
|
834
|
+
const localVarRequestOptions = Object.assign(Object.assign({ method: 'POST' }, baseOptions), options);
|
|
835
|
+
const localVarHeaderParameter = {};
|
|
836
|
+
const localVarQueryParameter = {};
|
|
837
|
+
// authentication tokenScheme required
|
|
838
|
+
// http bearer authentication required
|
|
839
|
+
yield setBearerAuthToObject(localVarHeaderParameter, configuration);
|
|
840
|
+
localVarHeaderParameter['Content-Type'] = 'application/json';
|
|
841
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
842
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
843
|
+
localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
|
|
844
|
+
localVarRequestOptions.data = serializeDataIfNeeded(accessRecordVehicleAddVo, localVarRequestOptions, configuration);
|
|
845
|
+
return {
|
|
846
|
+
url: toPathString(localVarUrlObj),
|
|
847
|
+
options: localVarRequestOptions,
|
|
848
|
+
};
|
|
849
|
+
}),
|
|
784
850
|
/**
|
|
785
851
|
*
|
|
786
852
|
* @summary 新增出入白名单申请
|
|
@@ -1833,6 +1899,38 @@ export const AccessApiFp = function (configuration) {
|
|
|
1833
1899
|
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
1834
1900
|
});
|
|
1835
1901
|
},
|
|
1902
|
+
/**
|
|
1903
|
+
*
|
|
1904
|
+
* @summary 新增人员出入记录
|
|
1905
|
+
* @param {AccessRecordVehicleAddVo} accessRecordVehicleAddVo
|
|
1906
|
+
* @param {*} [options] Override http request option.
|
|
1907
|
+
* @throws {RequiredError}
|
|
1908
|
+
*/
|
|
1909
|
+
accessRecordPersonAdd(accessRecordVehicleAddVo, options) {
|
|
1910
|
+
return __awaiter(this, void 0, void 0, function* () {
|
|
1911
|
+
var _a, _b, _c;
|
|
1912
|
+
const localVarAxiosArgs = yield localVarAxiosParamCreator.accessRecordPersonAdd(accessRecordVehicleAddVo, options);
|
|
1913
|
+
const localVarOperationServerIndex = (_a = configuration === null || configuration === void 0 ? void 0 : configuration.serverIndex) !== null && _a !== void 0 ? _a : 0;
|
|
1914
|
+
const localVarOperationServerBasePath = (_c = (_b = operationServerMap['AccessApi.accessRecordPersonAdd']) === null || _b === void 0 ? void 0 : _b[localVarOperationServerIndex]) === null || _c === void 0 ? void 0 : _c.url;
|
|
1915
|
+
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
1916
|
+
});
|
|
1917
|
+
},
|
|
1918
|
+
/**
|
|
1919
|
+
*
|
|
1920
|
+
* @summary 新增车辆出入记录
|
|
1921
|
+
* @param {AccessRecordVehicleAddVo} accessRecordVehicleAddVo
|
|
1922
|
+
* @param {*} [options] Override http request option.
|
|
1923
|
+
* @throws {RequiredError}
|
|
1924
|
+
*/
|
|
1925
|
+
accessRecordVehicleAdd(accessRecordVehicleAddVo, options) {
|
|
1926
|
+
return __awaiter(this, void 0, void 0, function* () {
|
|
1927
|
+
var _a, _b, _c;
|
|
1928
|
+
const localVarAxiosArgs = yield localVarAxiosParamCreator.accessRecordVehicleAdd(accessRecordVehicleAddVo, options);
|
|
1929
|
+
const localVarOperationServerIndex = (_a = configuration === null || configuration === void 0 ? void 0 : configuration.serverIndex) !== null && _a !== void 0 ? _a : 0;
|
|
1930
|
+
const localVarOperationServerBasePath = (_c = (_b = operationServerMap['AccessApi.accessRecordVehicleAdd']) === null || _b === void 0 ? void 0 : _b[localVarOperationServerIndex]) === null || _c === void 0 ? void 0 : _c.url;
|
|
1931
|
+
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
1932
|
+
});
|
|
1933
|
+
},
|
|
1836
1934
|
/**
|
|
1837
1935
|
*
|
|
1838
1936
|
* @summary 新增出入白名单申请
|
|
@@ -2363,6 +2461,26 @@ export const AccessApiFactory = function (configuration, basePath, axios) {
|
|
|
2363
2461
|
accessConfigUpdate(requestParameters, options) {
|
|
2364
2462
|
return localVarFp.accessConfigUpdate(requestParameters.parkId, requestParameters.accessConfigVo, options).then((request) => request(axios, basePath));
|
|
2365
2463
|
},
|
|
2464
|
+
/**
|
|
2465
|
+
*
|
|
2466
|
+
* @summary 新增人员出入记录
|
|
2467
|
+
* @param {AccessApiAccessRecordPersonAddRequest} requestParameters Request parameters.
|
|
2468
|
+
* @param {*} [options] Override http request option.
|
|
2469
|
+
* @throws {RequiredError}
|
|
2470
|
+
*/
|
|
2471
|
+
accessRecordPersonAdd(requestParameters, options) {
|
|
2472
|
+
return localVarFp.accessRecordPersonAdd(requestParameters.accessRecordVehicleAddVo, options).then((request) => request(axios, basePath));
|
|
2473
|
+
},
|
|
2474
|
+
/**
|
|
2475
|
+
*
|
|
2476
|
+
* @summary 新增车辆出入记录
|
|
2477
|
+
* @param {AccessApiAccessRecordVehicleAddRequest} requestParameters Request parameters.
|
|
2478
|
+
* @param {*} [options] Override http request option.
|
|
2479
|
+
* @throws {RequiredError}
|
|
2480
|
+
*/
|
|
2481
|
+
accessRecordVehicleAdd(requestParameters, options) {
|
|
2482
|
+
return localVarFp.accessRecordVehicleAdd(requestParameters.accessRecordVehicleAddVo, options).then((request) => request(axios, basePath));
|
|
2483
|
+
},
|
|
2366
2484
|
/**
|
|
2367
2485
|
*
|
|
2368
2486
|
* @summary 新增出入白名单申请
|
|
@@ -2779,6 +2897,28 @@ export class AccessApi extends BaseAPI {
|
|
|
2779
2897
|
accessConfigUpdate(requestParameters, options) {
|
|
2780
2898
|
return AccessApiFp(this.configuration).accessConfigUpdate(requestParameters.parkId, requestParameters.accessConfigVo, options).then((request) => request(this.axios, this.basePath));
|
|
2781
2899
|
}
|
|
2900
|
+
/**
|
|
2901
|
+
*
|
|
2902
|
+
* @summary 新增人员出入记录
|
|
2903
|
+
* @param {AccessApiAccessRecordPersonAddRequest} requestParameters Request parameters.
|
|
2904
|
+
* @param {*} [options] Override http request option.
|
|
2905
|
+
* @throws {RequiredError}
|
|
2906
|
+
* @memberof AccessApi
|
|
2907
|
+
*/
|
|
2908
|
+
accessRecordPersonAdd(requestParameters, options) {
|
|
2909
|
+
return AccessApiFp(this.configuration).accessRecordPersonAdd(requestParameters.accessRecordVehicleAddVo, options).then((request) => request(this.axios, this.basePath));
|
|
2910
|
+
}
|
|
2911
|
+
/**
|
|
2912
|
+
*
|
|
2913
|
+
* @summary 新增车辆出入记录
|
|
2914
|
+
* @param {AccessApiAccessRecordVehicleAddRequest} requestParameters Request parameters.
|
|
2915
|
+
* @param {*} [options] Override http request option.
|
|
2916
|
+
* @throws {RequiredError}
|
|
2917
|
+
* @memberof AccessApi
|
|
2918
|
+
*/
|
|
2919
|
+
accessRecordVehicleAdd(requestParameters, options) {
|
|
2920
|
+
return AccessApiFp(this.configuration).accessRecordVehicleAdd(requestParameters.accessRecordVehicleAddVo, options).then((request) => request(this.axios, this.basePath));
|
|
2921
|
+
}
|
|
2782
2922
|
/**
|
|
2783
2923
|
*
|
|
2784
2924
|
* @summary 新增出入白名单申请
|
|
@@ -40,15 +40,15 @@ export interface AccessAppointmentRecordInOtherInfoVo {
|
|
|
40
40
|
*/
|
|
41
41
|
'laborContractUrl'?: Array<string>;
|
|
42
42
|
/**
|
|
43
|
-
*
|
|
43
|
+
* 八步法
|
|
44
44
|
* @type {Array<string>}
|
|
45
45
|
* @memberof AccessAppointmentRecordInOtherInfoVo
|
|
46
46
|
*/
|
|
47
|
-
'
|
|
47
|
+
'eightStepUrl'?: Array<string>;
|
|
48
48
|
/**
|
|
49
|
-
*
|
|
49
|
+
* 其他附件
|
|
50
50
|
* @type {Array<string>}
|
|
51
51
|
* @memberof AccessAppointmentRecordInOtherInfoVo
|
|
52
52
|
*/
|
|
53
|
-
'
|
|
53
|
+
'otherUrl'?: Array<string>;
|
|
54
54
|
}
|
|
@@ -0,0 +1,126 @@
|
|
|
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 AccessRecordVehicleAddVo
|
|
16
|
+
*/
|
|
17
|
+
export interface AccessRecordVehicleAddVo {
|
|
18
|
+
/**
|
|
19
|
+
* 园区ID
|
|
20
|
+
* @type {number}
|
|
21
|
+
* @memberof AccessRecordVehicleAddVo
|
|
22
|
+
*/
|
|
23
|
+
'parkId'?: number;
|
|
24
|
+
/**
|
|
25
|
+
* 车道id
|
|
26
|
+
* @type {number}
|
|
27
|
+
* @memberof AccessRecordVehicleAddVo
|
|
28
|
+
*/
|
|
29
|
+
'laneId'?: number;
|
|
30
|
+
/**
|
|
31
|
+
* 车道唯一标识
|
|
32
|
+
* @type {string}
|
|
33
|
+
* @memberof AccessRecordVehicleAddVo
|
|
34
|
+
*/
|
|
35
|
+
'roadwayCode'?: string;
|
|
36
|
+
/**
|
|
37
|
+
* 出入口名称
|
|
38
|
+
* @type {string}
|
|
39
|
+
* @memberof AccessRecordVehicleAddVo
|
|
40
|
+
*/
|
|
41
|
+
'entranceName'?: string;
|
|
42
|
+
/**
|
|
43
|
+
* 出入口唯一标识
|
|
44
|
+
* @type {string}
|
|
45
|
+
* @memberof AccessRecordVehicleAddVo
|
|
46
|
+
*/
|
|
47
|
+
'entranceCode'?: string;
|
|
48
|
+
/**
|
|
49
|
+
* 车道名称
|
|
50
|
+
* @type {string}
|
|
51
|
+
* @memberof AccessRecordVehicleAddVo
|
|
52
|
+
*/
|
|
53
|
+
'roadwayName'?: string;
|
|
54
|
+
/**
|
|
55
|
+
* 车牌号码
|
|
56
|
+
* @type {string}
|
|
57
|
+
* @memberof AccessRecordVehicleAddVo
|
|
58
|
+
*/
|
|
59
|
+
'plateNo'?: string;
|
|
60
|
+
/**
|
|
61
|
+
* 车牌颜色
|
|
62
|
+
* @type {string}
|
|
63
|
+
* @memberof AccessRecordVehicleAddVo
|
|
64
|
+
*/
|
|
65
|
+
'plateColor'?: string;
|
|
66
|
+
/**
|
|
67
|
+
* 车辆类型
|
|
68
|
+
* @type {number}
|
|
69
|
+
* @memberof AccessRecordVehicleAddVo
|
|
70
|
+
*/
|
|
71
|
+
'vehicleType'?: number;
|
|
72
|
+
/**
|
|
73
|
+
* 出入类型 0:入园 1:出园
|
|
74
|
+
* @type {number}
|
|
75
|
+
* @memberof AccessRecordVehicleAddVo
|
|
76
|
+
*/
|
|
77
|
+
'vehicleOut'?: number;
|
|
78
|
+
/**
|
|
79
|
+
* 放行结果
|
|
80
|
+
* @type {number}
|
|
81
|
+
* @memberof AccessRecordVehicleAddVo
|
|
82
|
+
*/
|
|
83
|
+
'releaseResult'?: number;
|
|
84
|
+
/**
|
|
85
|
+
* 入园/出园照片
|
|
86
|
+
* @type {string}
|
|
87
|
+
* @memberof AccessRecordVehicleAddVo
|
|
88
|
+
*/
|
|
89
|
+
'vehiclePicUri'?: string;
|
|
90
|
+
/**
|
|
91
|
+
* 车牌图片
|
|
92
|
+
* @type {string}
|
|
93
|
+
* @memberof AccessRecordVehicleAddVo
|
|
94
|
+
*/
|
|
95
|
+
'plateNoPicUri'?: string;
|
|
96
|
+
/**
|
|
97
|
+
* 访问公司
|
|
98
|
+
* @type {number}
|
|
99
|
+
* @memberof AccessRecordVehicleAddVo
|
|
100
|
+
*/
|
|
101
|
+
'companyId'?: number;
|
|
102
|
+
/**
|
|
103
|
+
* 过车记录唯一标识
|
|
104
|
+
* @type {string}
|
|
105
|
+
* @memberof AccessRecordVehicleAddVo
|
|
106
|
+
*/
|
|
107
|
+
'inoutCode'?: string;
|
|
108
|
+
/**
|
|
109
|
+
* 放行方式
|
|
110
|
+
* @type {string}
|
|
111
|
+
* @memberof AccessRecordVehicleAddVo
|
|
112
|
+
*/
|
|
113
|
+
'releaseWay'?: string;
|
|
114
|
+
/**
|
|
115
|
+
* 通行时间
|
|
116
|
+
* @type {string}
|
|
117
|
+
* @memberof AccessRecordVehicleAddVo
|
|
118
|
+
*/
|
|
119
|
+
'crossTime'?: string;
|
|
120
|
+
/**
|
|
121
|
+
* 来源
|
|
122
|
+
* @type {string}
|
|
123
|
+
* @memberof AccessRecordVehicleAddVo
|
|
124
|
+
*/
|
|
125
|
+
'dataSource'?: string;
|
|
126
|
+
}
|
|
@@ -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 {};
|
|
@@ -21,6 +21,7 @@ export * from './access-config-entity';
|
|
|
21
21
|
export * from './access-config-vo';
|
|
22
22
|
export * from './access-direction-enum';
|
|
23
23
|
export * from './access-reason-enum';
|
|
24
|
+
export * from './access-record-vehicle-add-vo';
|
|
24
25
|
export * from './access-vehicle-length-enum';
|
|
25
26
|
export * from './access-vehicle-type-enum';
|
|
26
27
|
export * from './access-visitor-person-type-config-vo';
|
package/dist/esm/models/index.js
CHANGED
|
@@ -21,6 +21,7 @@ export * from './access-config-entity';
|
|
|
21
21
|
export * from './access-config-vo';
|
|
22
22
|
export * from './access-direction-enum';
|
|
23
23
|
export * from './access-reason-enum';
|
|
24
|
+
export * from './access-record-vehicle-add-vo';
|
|
24
25
|
export * from './access-vehicle-length-enum';
|
|
25
26
|
export * from './access-vehicle-type-enum';
|
|
26
27
|
export * from './access-visitor-person-type-config-vo';
|
|
@@ -40,15 +40,15 @@ export interface AccessAppointmentRecordInOtherInfoVo {
|
|
|
40
40
|
*/
|
|
41
41
|
'laborContractUrl'?: Array<string>;
|
|
42
42
|
/**
|
|
43
|
-
*
|
|
43
|
+
* 八步法
|
|
44
44
|
* @type {Array<string>}
|
|
45
45
|
* @memberof AccessAppointmentRecordInOtherInfoVo
|
|
46
46
|
*/
|
|
47
|
-
'
|
|
47
|
+
'eightStepUrl'?: Array<string>;
|
|
48
48
|
/**
|
|
49
|
-
*
|
|
49
|
+
* 其他附件
|
|
50
50
|
* @type {Array<string>}
|
|
51
51
|
* @memberof AccessAppointmentRecordInOtherInfoVo
|
|
52
52
|
*/
|
|
53
|
-
'
|
|
53
|
+
'otherUrl'?: Array<string>;
|
|
54
54
|
}
|
|
@@ -0,0 +1,126 @@
|
|
|
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 AccessRecordVehicleAddVo
|
|
16
|
+
*/
|
|
17
|
+
export interface AccessRecordVehicleAddVo {
|
|
18
|
+
/**
|
|
19
|
+
* 园区ID
|
|
20
|
+
* @type {number}
|
|
21
|
+
* @memberof AccessRecordVehicleAddVo
|
|
22
|
+
*/
|
|
23
|
+
'parkId'?: number;
|
|
24
|
+
/**
|
|
25
|
+
* 车道id
|
|
26
|
+
* @type {number}
|
|
27
|
+
* @memberof AccessRecordVehicleAddVo
|
|
28
|
+
*/
|
|
29
|
+
'laneId'?: number;
|
|
30
|
+
/**
|
|
31
|
+
* 车道唯一标识
|
|
32
|
+
* @type {string}
|
|
33
|
+
* @memberof AccessRecordVehicleAddVo
|
|
34
|
+
*/
|
|
35
|
+
'roadwayCode'?: string;
|
|
36
|
+
/**
|
|
37
|
+
* 出入口名称
|
|
38
|
+
* @type {string}
|
|
39
|
+
* @memberof AccessRecordVehicleAddVo
|
|
40
|
+
*/
|
|
41
|
+
'entranceName'?: string;
|
|
42
|
+
/**
|
|
43
|
+
* 出入口唯一标识
|
|
44
|
+
* @type {string}
|
|
45
|
+
* @memberof AccessRecordVehicleAddVo
|
|
46
|
+
*/
|
|
47
|
+
'entranceCode'?: string;
|
|
48
|
+
/**
|
|
49
|
+
* 车道名称
|
|
50
|
+
* @type {string}
|
|
51
|
+
* @memberof AccessRecordVehicleAddVo
|
|
52
|
+
*/
|
|
53
|
+
'roadwayName'?: string;
|
|
54
|
+
/**
|
|
55
|
+
* 车牌号码
|
|
56
|
+
* @type {string}
|
|
57
|
+
* @memberof AccessRecordVehicleAddVo
|
|
58
|
+
*/
|
|
59
|
+
'plateNo'?: string;
|
|
60
|
+
/**
|
|
61
|
+
* 车牌颜色
|
|
62
|
+
* @type {string}
|
|
63
|
+
* @memberof AccessRecordVehicleAddVo
|
|
64
|
+
*/
|
|
65
|
+
'plateColor'?: string;
|
|
66
|
+
/**
|
|
67
|
+
* 车辆类型
|
|
68
|
+
* @type {number}
|
|
69
|
+
* @memberof AccessRecordVehicleAddVo
|
|
70
|
+
*/
|
|
71
|
+
'vehicleType'?: number;
|
|
72
|
+
/**
|
|
73
|
+
* 出入类型 0:入园 1:出园
|
|
74
|
+
* @type {number}
|
|
75
|
+
* @memberof AccessRecordVehicleAddVo
|
|
76
|
+
*/
|
|
77
|
+
'vehicleOut'?: number;
|
|
78
|
+
/**
|
|
79
|
+
* 放行结果
|
|
80
|
+
* @type {number}
|
|
81
|
+
* @memberof AccessRecordVehicleAddVo
|
|
82
|
+
*/
|
|
83
|
+
'releaseResult'?: number;
|
|
84
|
+
/**
|
|
85
|
+
* 入园/出园照片
|
|
86
|
+
* @type {string}
|
|
87
|
+
* @memberof AccessRecordVehicleAddVo
|
|
88
|
+
*/
|
|
89
|
+
'vehiclePicUri'?: string;
|
|
90
|
+
/**
|
|
91
|
+
* 车牌图片
|
|
92
|
+
* @type {string}
|
|
93
|
+
* @memberof AccessRecordVehicleAddVo
|
|
94
|
+
*/
|
|
95
|
+
'plateNoPicUri'?: string;
|
|
96
|
+
/**
|
|
97
|
+
* 访问公司
|
|
98
|
+
* @type {number}
|
|
99
|
+
* @memberof AccessRecordVehicleAddVo
|
|
100
|
+
*/
|
|
101
|
+
'companyId'?: number;
|
|
102
|
+
/**
|
|
103
|
+
* 过车记录唯一标识
|
|
104
|
+
* @type {string}
|
|
105
|
+
* @memberof AccessRecordVehicleAddVo
|
|
106
|
+
*/
|
|
107
|
+
'inoutCode'?: string;
|
|
108
|
+
/**
|
|
109
|
+
* 放行方式
|
|
110
|
+
* @type {string}
|
|
111
|
+
* @memberof AccessRecordVehicleAddVo
|
|
112
|
+
*/
|
|
113
|
+
'releaseWay'?: string;
|
|
114
|
+
/**
|
|
115
|
+
* 通行时间
|
|
116
|
+
* @type {string}
|
|
117
|
+
* @memberof AccessRecordVehicleAddVo
|
|
118
|
+
*/
|
|
119
|
+
'crossTime'?: string;
|
|
120
|
+
/**
|
|
121
|
+
* 来源
|
|
122
|
+
* @type {string}
|
|
123
|
+
* @memberof AccessRecordVehicleAddVo
|
|
124
|
+
*/
|
|
125
|
+
'dataSource'?: string;
|
|
126
|
+
}
|
|
@@ -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 });
|
package/dist/models/index.d.ts
CHANGED
|
@@ -21,6 +21,7 @@ export * from './access-config-entity';
|
|
|
21
21
|
export * from './access-config-vo';
|
|
22
22
|
export * from './access-direction-enum';
|
|
23
23
|
export * from './access-reason-enum';
|
|
24
|
+
export * from './access-record-vehicle-add-vo';
|
|
24
25
|
export * from './access-vehicle-length-enum';
|
|
25
26
|
export * from './access-vehicle-type-enum';
|
|
26
27
|
export * from './access-visitor-person-type-config-vo';
|
package/dist/models/index.js
CHANGED
|
@@ -37,6 +37,7 @@ __exportStar(require("./access-config-entity"), exports);
|
|
|
37
37
|
__exportStar(require("./access-config-vo"), exports);
|
|
38
38
|
__exportStar(require("./access-direction-enum"), exports);
|
|
39
39
|
__exportStar(require("./access-reason-enum"), exports);
|
|
40
|
+
__exportStar(require("./access-record-vehicle-add-vo"), exports);
|
|
40
41
|
__exportStar(require("./access-vehicle-length-enum"), exports);
|
|
41
42
|
__exportStar(require("./access-vehicle-type-enum"), exports);
|
|
42
43
|
__exportStar(require("./access-visitor-person-type-config-vo"), exports);
|
|
@@ -45,16 +45,16 @@ export interface AccessAppointmentRecordInOtherInfoVo {
|
|
|
45
45
|
*/
|
|
46
46
|
'laborContractUrl'?: Array<string>;
|
|
47
47
|
/**
|
|
48
|
-
*
|
|
48
|
+
* 八步法
|
|
49
49
|
* @type {Array<string>}
|
|
50
50
|
* @memberof AccessAppointmentRecordInOtherInfoVo
|
|
51
51
|
*/
|
|
52
|
-
'
|
|
52
|
+
'eightStepUrl'?: Array<string>;
|
|
53
53
|
/**
|
|
54
|
-
*
|
|
54
|
+
* 其他附件
|
|
55
55
|
* @type {Array<string>}
|
|
56
56
|
* @memberof AccessAppointmentRecordInOtherInfoVo
|
|
57
57
|
*/
|
|
58
|
-
'
|
|
58
|
+
'otherUrl'?: Array<string>;
|
|
59
59
|
}
|
|
60
60
|
|
|
@@ -0,0 +1,132 @@
|
|
|
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
|
+
* @interface AccessRecordVehicleAddVo
|
|
21
|
+
*/
|
|
22
|
+
export interface AccessRecordVehicleAddVo {
|
|
23
|
+
/**
|
|
24
|
+
* 园区ID
|
|
25
|
+
* @type {number}
|
|
26
|
+
* @memberof AccessRecordVehicleAddVo
|
|
27
|
+
*/
|
|
28
|
+
'parkId'?: number;
|
|
29
|
+
/**
|
|
30
|
+
* 车道id
|
|
31
|
+
* @type {number}
|
|
32
|
+
* @memberof AccessRecordVehicleAddVo
|
|
33
|
+
*/
|
|
34
|
+
'laneId'?: number;
|
|
35
|
+
/**
|
|
36
|
+
* 车道唯一标识
|
|
37
|
+
* @type {string}
|
|
38
|
+
* @memberof AccessRecordVehicleAddVo
|
|
39
|
+
*/
|
|
40
|
+
'roadwayCode'?: string;
|
|
41
|
+
/**
|
|
42
|
+
* 出入口名称
|
|
43
|
+
* @type {string}
|
|
44
|
+
* @memberof AccessRecordVehicleAddVo
|
|
45
|
+
*/
|
|
46
|
+
'entranceName'?: string;
|
|
47
|
+
/**
|
|
48
|
+
* 出入口唯一标识
|
|
49
|
+
* @type {string}
|
|
50
|
+
* @memberof AccessRecordVehicleAddVo
|
|
51
|
+
*/
|
|
52
|
+
'entranceCode'?: string;
|
|
53
|
+
/**
|
|
54
|
+
* 车道名称
|
|
55
|
+
* @type {string}
|
|
56
|
+
* @memberof AccessRecordVehicleAddVo
|
|
57
|
+
*/
|
|
58
|
+
'roadwayName'?: string;
|
|
59
|
+
/**
|
|
60
|
+
* 车牌号码
|
|
61
|
+
* @type {string}
|
|
62
|
+
* @memberof AccessRecordVehicleAddVo
|
|
63
|
+
*/
|
|
64
|
+
'plateNo'?: string;
|
|
65
|
+
/**
|
|
66
|
+
* 车牌颜色
|
|
67
|
+
* @type {string}
|
|
68
|
+
* @memberof AccessRecordVehicleAddVo
|
|
69
|
+
*/
|
|
70
|
+
'plateColor'?: string;
|
|
71
|
+
/**
|
|
72
|
+
* 车辆类型
|
|
73
|
+
* @type {number}
|
|
74
|
+
* @memberof AccessRecordVehicleAddVo
|
|
75
|
+
*/
|
|
76
|
+
'vehicleType'?: number;
|
|
77
|
+
/**
|
|
78
|
+
* 出入类型 0:入园 1:出园
|
|
79
|
+
* @type {number}
|
|
80
|
+
* @memberof AccessRecordVehicleAddVo
|
|
81
|
+
*/
|
|
82
|
+
'vehicleOut'?: number;
|
|
83
|
+
/**
|
|
84
|
+
* 放行结果
|
|
85
|
+
* @type {number}
|
|
86
|
+
* @memberof AccessRecordVehicleAddVo
|
|
87
|
+
*/
|
|
88
|
+
'releaseResult'?: number;
|
|
89
|
+
/**
|
|
90
|
+
* 入园/出园照片
|
|
91
|
+
* @type {string}
|
|
92
|
+
* @memberof AccessRecordVehicleAddVo
|
|
93
|
+
*/
|
|
94
|
+
'vehiclePicUri'?: string;
|
|
95
|
+
/**
|
|
96
|
+
* 车牌图片
|
|
97
|
+
* @type {string}
|
|
98
|
+
* @memberof AccessRecordVehicleAddVo
|
|
99
|
+
*/
|
|
100
|
+
'plateNoPicUri'?: string;
|
|
101
|
+
/**
|
|
102
|
+
* 访问公司
|
|
103
|
+
* @type {number}
|
|
104
|
+
* @memberof AccessRecordVehicleAddVo
|
|
105
|
+
*/
|
|
106
|
+
'companyId'?: number;
|
|
107
|
+
/**
|
|
108
|
+
* 过车记录唯一标识
|
|
109
|
+
* @type {string}
|
|
110
|
+
* @memberof AccessRecordVehicleAddVo
|
|
111
|
+
*/
|
|
112
|
+
'inoutCode'?: string;
|
|
113
|
+
/**
|
|
114
|
+
* 放行方式
|
|
115
|
+
* @type {string}
|
|
116
|
+
* @memberof AccessRecordVehicleAddVo
|
|
117
|
+
*/
|
|
118
|
+
'releaseWay'?: string;
|
|
119
|
+
/**
|
|
120
|
+
* 通行时间
|
|
121
|
+
* @type {string}
|
|
122
|
+
* @memberof AccessRecordVehicleAddVo
|
|
123
|
+
*/
|
|
124
|
+
'crossTime'?: string;
|
|
125
|
+
/**
|
|
126
|
+
* 来源
|
|
127
|
+
* @type {string}
|
|
128
|
+
* @memberof AccessRecordVehicleAddVo
|
|
129
|
+
*/
|
|
130
|
+
'dataSource'?: string;
|
|
131
|
+
}
|
|
132
|
+
|