@gizone/rrs-client 4.2.7-alpha.438 → 4.2.7-alpha.439
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 +5 -0
- package/apis/common-api.ts +196 -0
- package/dist/apis/common-api.d.ts +103 -0
- package/dist/apis/common-api.js +144 -0
- package/dist/esm/apis/common-api.d.ts +103 -0
- package/dist/esm/apis/common-api.js +144 -0
- package/dist/esm/models/index.d.ts +5 -0
- package/dist/esm/models/index.js +5 -0
- package/dist/esm/models/json-result-list-srm-center-vo.d.ts +62 -0
- package/dist/esm/models/json-result-list-srm-center-vo.js +14 -0
- package/dist/esm/models/json-result-srm-center-entity.d.ts +62 -0
- package/dist/esm/models/json-result-srm-center-entity.js +14 -0
- package/dist/esm/models/srm-center-entity.d.ts +54 -0
- package/dist/esm/models/srm-center-entity.js +14 -0
- package/dist/esm/models/srm-center-vo.d.ts +54 -0
- package/dist/esm/models/srm-center-vo.js +14 -0
- package/dist/esm/models/srm-level-add-dto.d.ts +48 -0
- package/dist/esm/models/srm-level-add-dto.js +14 -0
- package/dist/models/index.d.ts +5 -0
- package/dist/models/index.js +5 -0
- package/dist/models/json-result-list-srm-center-vo.d.ts +62 -0
- package/dist/models/json-result-list-srm-center-vo.js +15 -0
- package/dist/models/json-result-srm-center-entity.d.ts +62 -0
- package/dist/models/json-result-srm-center-entity.js +15 -0
- package/dist/models/srm-center-entity.d.ts +54 -0
- package/dist/models/srm-center-entity.js +15 -0
- package/dist/models/srm-center-vo.d.ts +54 -0
- package/dist/models/srm-center-vo.js +15 -0
- package/dist/models/srm-level-add-dto.d.ts +48 -0
- package/dist/models/srm-level-add-dto.js +15 -0
- package/models/index.ts +5 -0
- package/models/json-result-list-srm-center-vo.ts +72 -0
- package/models/json-result-srm-center-entity.ts +72 -0
- package/models/srm-center-entity.ts +60 -0
- package/models/srm-center-vo.ts +60 -0
- package/models/srm-level-add-dto.ts +54 -0
- package/package.json +1 -1
|
@@ -0,0 +1,62 @@
|
|
|
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 { BaseErrorResult } from './base-error-result';
|
|
13
|
+
import type { SrmCenterVO } from './srm-center-vo';
|
|
14
|
+
/**
|
|
15
|
+
*
|
|
16
|
+
* @export
|
|
17
|
+
* @interface JsonResultListSrmCenterVO
|
|
18
|
+
*/
|
|
19
|
+
export interface JsonResultListSrmCenterVO {
|
|
20
|
+
/**
|
|
21
|
+
* 错误码,0:成功,其他:失败
|
|
22
|
+
* @type {number}
|
|
23
|
+
* @memberof JsonResultListSrmCenterVO
|
|
24
|
+
*/
|
|
25
|
+
'code'?: number;
|
|
26
|
+
/**
|
|
27
|
+
* 错误消息
|
|
28
|
+
* @type {string}
|
|
29
|
+
* @memberof JsonResultListSrmCenterVO
|
|
30
|
+
*/
|
|
31
|
+
'msg'?: string;
|
|
32
|
+
/**
|
|
33
|
+
* 错误堆栈
|
|
34
|
+
* @type {string}
|
|
35
|
+
* @memberof JsonResultListSrmCenterVO
|
|
36
|
+
*/
|
|
37
|
+
'stacks'?: string;
|
|
38
|
+
/**
|
|
39
|
+
* 返回数据,可以是任意类型的值
|
|
40
|
+
* @type {Array<SrmCenterVO>}
|
|
41
|
+
* @memberof JsonResultListSrmCenterVO
|
|
42
|
+
*/
|
|
43
|
+
'data'?: Array<SrmCenterVO> | null;
|
|
44
|
+
/**
|
|
45
|
+
*
|
|
46
|
+
* @type {BaseErrorResult}
|
|
47
|
+
* @memberof JsonResultListSrmCenterVO
|
|
48
|
+
*/
|
|
49
|
+
'error'?: BaseErrorResult | null;
|
|
50
|
+
/**
|
|
51
|
+
* 日志追踪ID
|
|
52
|
+
* @type {string}
|
|
53
|
+
* @memberof JsonResultListSrmCenterVO
|
|
54
|
+
*/
|
|
55
|
+
'traceId'?: string | null;
|
|
56
|
+
/**
|
|
57
|
+
* requestId
|
|
58
|
+
* @type {string}
|
|
59
|
+
* @memberof JsonResultListSrmCenterVO
|
|
60
|
+
*/
|
|
61
|
+
'requestId'?: string | null;
|
|
62
|
+
}
|
|
@@ -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,62 @@
|
|
|
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 { BaseErrorResult } from './base-error-result';
|
|
13
|
+
import type { SrmCenterEntity } from './srm-center-entity';
|
|
14
|
+
/**
|
|
15
|
+
*
|
|
16
|
+
* @export
|
|
17
|
+
* @interface JsonResultSrmCenterEntity
|
|
18
|
+
*/
|
|
19
|
+
export interface JsonResultSrmCenterEntity {
|
|
20
|
+
/**
|
|
21
|
+
* 错误码,0:成功,其他:失败
|
|
22
|
+
* @type {number}
|
|
23
|
+
* @memberof JsonResultSrmCenterEntity
|
|
24
|
+
*/
|
|
25
|
+
'code'?: number;
|
|
26
|
+
/**
|
|
27
|
+
* 错误消息
|
|
28
|
+
* @type {string}
|
|
29
|
+
* @memberof JsonResultSrmCenterEntity
|
|
30
|
+
*/
|
|
31
|
+
'msg'?: string;
|
|
32
|
+
/**
|
|
33
|
+
* 错误堆栈
|
|
34
|
+
* @type {string}
|
|
35
|
+
* @memberof JsonResultSrmCenterEntity
|
|
36
|
+
*/
|
|
37
|
+
'stacks'?: string;
|
|
38
|
+
/**
|
|
39
|
+
*
|
|
40
|
+
* @type {SrmCenterEntity}
|
|
41
|
+
* @memberof JsonResultSrmCenterEntity
|
|
42
|
+
*/
|
|
43
|
+
'data'?: SrmCenterEntity | null;
|
|
44
|
+
/**
|
|
45
|
+
*
|
|
46
|
+
* @type {BaseErrorResult}
|
|
47
|
+
* @memberof JsonResultSrmCenterEntity
|
|
48
|
+
*/
|
|
49
|
+
'error'?: BaseErrorResult | null;
|
|
50
|
+
/**
|
|
51
|
+
* 日志追踪ID
|
|
52
|
+
* @type {string}
|
|
53
|
+
* @memberof JsonResultSrmCenterEntity
|
|
54
|
+
*/
|
|
55
|
+
'traceId'?: string | null;
|
|
56
|
+
/**
|
|
57
|
+
* requestId
|
|
58
|
+
* @type {string}
|
|
59
|
+
* @memberof JsonResultSrmCenterEntity
|
|
60
|
+
*/
|
|
61
|
+
'requestId'?: string | null;
|
|
62
|
+
}
|
|
@@ -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,54 @@
|
|
|
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 SrmCenterEntity
|
|
16
|
+
*/
|
|
17
|
+
export interface SrmCenterEntity {
|
|
18
|
+
/**
|
|
19
|
+
*
|
|
20
|
+
* @type {number}
|
|
21
|
+
* @memberof SrmCenterEntity
|
|
22
|
+
*/
|
|
23
|
+
'id'?: number;
|
|
24
|
+
/**
|
|
25
|
+
* 名称
|
|
26
|
+
* @type {string}
|
|
27
|
+
* @memberof SrmCenterEntity
|
|
28
|
+
*/
|
|
29
|
+
'name'?: string;
|
|
30
|
+
/**
|
|
31
|
+
* 编码
|
|
32
|
+
* @type {string}
|
|
33
|
+
* @memberof SrmCenterEntity
|
|
34
|
+
*/
|
|
35
|
+
'code'?: string;
|
|
36
|
+
/**
|
|
37
|
+
* 层级 10:平台 20:大区 30:小微 40:中心 50:园区
|
|
38
|
+
* @type {number}
|
|
39
|
+
* @memberof SrmCenterEntity
|
|
40
|
+
*/
|
|
41
|
+
'level'?: number;
|
|
42
|
+
/**
|
|
43
|
+
* 父级编码
|
|
44
|
+
* @type {string}
|
|
45
|
+
* @memberof SrmCenterEntity
|
|
46
|
+
*/
|
|
47
|
+
'parentCode'?: string;
|
|
48
|
+
/**
|
|
49
|
+
* 所有父级编码
|
|
50
|
+
* @type {Array<string>}
|
|
51
|
+
* @memberof SrmCenterEntity
|
|
52
|
+
*/
|
|
53
|
+
'parentCodes'?: Array<string>;
|
|
54
|
+
}
|
|
@@ -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,54 @@
|
|
|
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
|
+
* srmCenter
|
|
14
|
+
* @export
|
|
15
|
+
* @interface SrmCenterVO
|
|
16
|
+
*/
|
|
17
|
+
export interface SrmCenterVO {
|
|
18
|
+
/**
|
|
19
|
+
* 名称
|
|
20
|
+
* @type {string}
|
|
21
|
+
* @memberof SrmCenterVO
|
|
22
|
+
*/
|
|
23
|
+
'name'?: string;
|
|
24
|
+
/**
|
|
25
|
+
* 编码
|
|
26
|
+
* @type {string}
|
|
27
|
+
* @memberof SrmCenterVO
|
|
28
|
+
*/
|
|
29
|
+
'code'?: string;
|
|
30
|
+
/**
|
|
31
|
+
* 层级 10:平台 20:大区 30:小微 40:中心 50:园区
|
|
32
|
+
* @type {number}
|
|
33
|
+
* @memberof SrmCenterVO
|
|
34
|
+
*/
|
|
35
|
+
'level'?: number;
|
|
36
|
+
/**
|
|
37
|
+
* 父级编码
|
|
38
|
+
* @type {string}
|
|
39
|
+
* @memberof SrmCenterVO
|
|
40
|
+
*/
|
|
41
|
+
'parentCode'?: string;
|
|
42
|
+
/**
|
|
43
|
+
* 所有父级编码
|
|
44
|
+
* @type {Array<string>}
|
|
45
|
+
* @memberof SrmCenterVO
|
|
46
|
+
*/
|
|
47
|
+
'parentCodes'?: Array<string>;
|
|
48
|
+
/**
|
|
49
|
+
*
|
|
50
|
+
* @type {SrmCenterVO}
|
|
51
|
+
* @memberof SrmCenterVO
|
|
52
|
+
*/
|
|
53
|
+
'parent'?: SrmCenterVO | null;
|
|
54
|
+
}
|
|
@@ -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,48 @@
|
|
|
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
|
+
* srmLevelAddDTO
|
|
14
|
+
* @export
|
|
15
|
+
* @interface SrmLevelAddDTO
|
|
16
|
+
*/
|
|
17
|
+
export interface SrmLevelAddDTO {
|
|
18
|
+
/**
|
|
19
|
+
* 编码
|
|
20
|
+
* @type {string}
|
|
21
|
+
* @memberof SrmLevelAddDTO
|
|
22
|
+
*/
|
|
23
|
+
'code': string;
|
|
24
|
+
/**
|
|
25
|
+
* 名称
|
|
26
|
+
* @type {string}
|
|
27
|
+
* @memberof SrmLevelAddDTO
|
|
28
|
+
*/
|
|
29
|
+
'name': string;
|
|
30
|
+
/**
|
|
31
|
+
* 层级 10:平台 20:大区 30:小微 40:中心 50:园区
|
|
32
|
+
* @type {number}
|
|
33
|
+
* @memberof SrmLevelAddDTO
|
|
34
|
+
*/
|
|
35
|
+
'level': number;
|
|
36
|
+
/**
|
|
37
|
+
* 父级编码
|
|
38
|
+
* @type {string}
|
|
39
|
+
* @memberof SrmLevelAddDTO
|
|
40
|
+
*/
|
|
41
|
+
'parentCode'?: string;
|
|
42
|
+
/**
|
|
43
|
+
* 父级层级 10:平台 20:大区 30:小微 40:中心 50:园区
|
|
44
|
+
* @type {number}
|
|
45
|
+
* @memberof SrmLevelAddDTO
|
|
46
|
+
*/
|
|
47
|
+
'parentLevel'?: number;
|
|
48
|
+
}
|
|
@@ -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 {};
|
package/dist/models/index.d.ts
CHANGED
|
@@ -228,6 +228,7 @@ export * from './json-result-list-space-point-dto';
|
|
|
228
228
|
export * from './json-result-list-space-qr-code-dto';
|
|
229
229
|
export * from './json-result-list-space-tree-dto';
|
|
230
230
|
export * from './json-result-list-space-url-dto';
|
|
231
|
+
export * from './json-result-list-srm-center-vo';
|
|
231
232
|
export * from './json-result-list-supplier-select-dto';
|
|
232
233
|
export * from './json-result-list-surveillance-settings-coverage-standard-dto';
|
|
233
234
|
export * from './json-result-list-sys-dept';
|
|
@@ -268,6 +269,7 @@ export * from './json-result-period-detail-resp';
|
|
|
268
269
|
export * from './json-result-plan-detail-dto';
|
|
269
270
|
export * from './json-result-space-add-redis-list-dto';
|
|
270
271
|
export * from './json-result-space-image-detail-dto';
|
|
272
|
+
export * from './json-result-srm-center-entity';
|
|
271
273
|
export * from './json-result-string';
|
|
272
274
|
export * from './json-result-supplier-contract-details-dto';
|
|
273
275
|
export * from './json-result-supplier-entity';
|
|
@@ -387,6 +389,9 @@ export * from './space-type-enum';
|
|
|
387
389
|
export * from './space-url-add-vo';
|
|
388
390
|
export * from './space-url-dto';
|
|
389
391
|
export * from './space-url-edit-vo';
|
|
392
|
+
export * from './srm-center-entity';
|
|
393
|
+
export * from './srm-center-vo';
|
|
394
|
+
export * from './srm-level-add-dto';
|
|
390
395
|
export * from './srm-park-contract-change-vo';
|
|
391
396
|
export * from './standard-delete-vo';
|
|
392
397
|
export * from './sub-buttons';
|
package/dist/models/index.js
CHANGED
|
@@ -244,6 +244,7 @@ __exportStar(require("./json-result-list-space-point-dto"), exports);
|
|
|
244
244
|
__exportStar(require("./json-result-list-space-qr-code-dto"), exports);
|
|
245
245
|
__exportStar(require("./json-result-list-space-tree-dto"), exports);
|
|
246
246
|
__exportStar(require("./json-result-list-space-url-dto"), exports);
|
|
247
|
+
__exportStar(require("./json-result-list-srm-center-vo"), exports);
|
|
247
248
|
__exportStar(require("./json-result-list-supplier-select-dto"), exports);
|
|
248
249
|
__exportStar(require("./json-result-list-surveillance-settings-coverage-standard-dto"), exports);
|
|
249
250
|
__exportStar(require("./json-result-list-sys-dept"), exports);
|
|
@@ -284,6 +285,7 @@ __exportStar(require("./json-result-period-detail-resp"), exports);
|
|
|
284
285
|
__exportStar(require("./json-result-plan-detail-dto"), exports);
|
|
285
286
|
__exportStar(require("./json-result-space-add-redis-list-dto"), exports);
|
|
286
287
|
__exportStar(require("./json-result-space-image-detail-dto"), exports);
|
|
288
|
+
__exportStar(require("./json-result-srm-center-entity"), exports);
|
|
287
289
|
__exportStar(require("./json-result-string"), exports);
|
|
288
290
|
__exportStar(require("./json-result-supplier-contract-details-dto"), exports);
|
|
289
291
|
__exportStar(require("./json-result-supplier-entity"), exports);
|
|
@@ -403,6 +405,9 @@ __exportStar(require("./space-type-enum"), exports);
|
|
|
403
405
|
__exportStar(require("./space-url-add-vo"), exports);
|
|
404
406
|
__exportStar(require("./space-url-dto"), exports);
|
|
405
407
|
__exportStar(require("./space-url-edit-vo"), exports);
|
|
408
|
+
__exportStar(require("./srm-center-entity"), exports);
|
|
409
|
+
__exportStar(require("./srm-center-vo"), exports);
|
|
410
|
+
__exportStar(require("./srm-level-add-dto"), exports);
|
|
406
411
|
__exportStar(require("./srm-park-contract-change-vo"), exports);
|
|
407
412
|
__exportStar(require("./standard-delete-vo"), exports);
|
|
408
413
|
__exportStar(require("./sub-buttons"), exports);
|
|
@@ -0,0 +1,62 @@
|
|
|
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 { BaseErrorResult } from './base-error-result';
|
|
13
|
+
import type { SrmCenterVO } from './srm-center-vo';
|
|
14
|
+
/**
|
|
15
|
+
*
|
|
16
|
+
* @export
|
|
17
|
+
* @interface JsonResultListSrmCenterVO
|
|
18
|
+
*/
|
|
19
|
+
export interface JsonResultListSrmCenterVO {
|
|
20
|
+
/**
|
|
21
|
+
* 错误码,0:成功,其他:失败
|
|
22
|
+
* @type {number}
|
|
23
|
+
* @memberof JsonResultListSrmCenterVO
|
|
24
|
+
*/
|
|
25
|
+
'code'?: number;
|
|
26
|
+
/**
|
|
27
|
+
* 错误消息
|
|
28
|
+
* @type {string}
|
|
29
|
+
* @memberof JsonResultListSrmCenterVO
|
|
30
|
+
*/
|
|
31
|
+
'msg'?: string;
|
|
32
|
+
/**
|
|
33
|
+
* 错误堆栈
|
|
34
|
+
* @type {string}
|
|
35
|
+
* @memberof JsonResultListSrmCenterVO
|
|
36
|
+
*/
|
|
37
|
+
'stacks'?: string;
|
|
38
|
+
/**
|
|
39
|
+
* 返回数据,可以是任意类型的值
|
|
40
|
+
* @type {Array<SrmCenterVO>}
|
|
41
|
+
* @memberof JsonResultListSrmCenterVO
|
|
42
|
+
*/
|
|
43
|
+
'data'?: Array<SrmCenterVO> | null;
|
|
44
|
+
/**
|
|
45
|
+
*
|
|
46
|
+
* @type {BaseErrorResult}
|
|
47
|
+
* @memberof JsonResultListSrmCenterVO
|
|
48
|
+
*/
|
|
49
|
+
'error'?: BaseErrorResult | null;
|
|
50
|
+
/**
|
|
51
|
+
* 日志追踪ID
|
|
52
|
+
* @type {string}
|
|
53
|
+
* @memberof JsonResultListSrmCenterVO
|
|
54
|
+
*/
|
|
55
|
+
'traceId'?: string | null;
|
|
56
|
+
/**
|
|
57
|
+
* requestId
|
|
58
|
+
* @type {string}
|
|
59
|
+
* @memberof JsonResultListSrmCenterVO
|
|
60
|
+
*/
|
|
61
|
+
'requestId'?: string | null;
|
|
62
|
+
}
|
|
@@ -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 });
|
|
@@ -0,0 +1,62 @@
|
|
|
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 { BaseErrorResult } from './base-error-result';
|
|
13
|
+
import type { SrmCenterEntity } from './srm-center-entity';
|
|
14
|
+
/**
|
|
15
|
+
*
|
|
16
|
+
* @export
|
|
17
|
+
* @interface JsonResultSrmCenterEntity
|
|
18
|
+
*/
|
|
19
|
+
export interface JsonResultSrmCenterEntity {
|
|
20
|
+
/**
|
|
21
|
+
* 错误码,0:成功,其他:失败
|
|
22
|
+
* @type {number}
|
|
23
|
+
* @memberof JsonResultSrmCenterEntity
|
|
24
|
+
*/
|
|
25
|
+
'code'?: number;
|
|
26
|
+
/**
|
|
27
|
+
* 错误消息
|
|
28
|
+
* @type {string}
|
|
29
|
+
* @memberof JsonResultSrmCenterEntity
|
|
30
|
+
*/
|
|
31
|
+
'msg'?: string;
|
|
32
|
+
/**
|
|
33
|
+
* 错误堆栈
|
|
34
|
+
* @type {string}
|
|
35
|
+
* @memberof JsonResultSrmCenterEntity
|
|
36
|
+
*/
|
|
37
|
+
'stacks'?: string;
|
|
38
|
+
/**
|
|
39
|
+
*
|
|
40
|
+
* @type {SrmCenterEntity}
|
|
41
|
+
* @memberof JsonResultSrmCenterEntity
|
|
42
|
+
*/
|
|
43
|
+
'data'?: SrmCenterEntity | null;
|
|
44
|
+
/**
|
|
45
|
+
*
|
|
46
|
+
* @type {BaseErrorResult}
|
|
47
|
+
* @memberof JsonResultSrmCenterEntity
|
|
48
|
+
*/
|
|
49
|
+
'error'?: BaseErrorResult | null;
|
|
50
|
+
/**
|
|
51
|
+
* 日志追踪ID
|
|
52
|
+
* @type {string}
|
|
53
|
+
* @memberof JsonResultSrmCenterEntity
|
|
54
|
+
*/
|
|
55
|
+
'traceId'?: string | null;
|
|
56
|
+
/**
|
|
57
|
+
* requestId
|
|
58
|
+
* @type {string}
|
|
59
|
+
* @memberof JsonResultSrmCenterEntity
|
|
60
|
+
*/
|
|
61
|
+
'requestId'?: string | null;
|
|
62
|
+
}
|
|
@@ -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 });
|
|
@@ -0,0 +1,54 @@
|
|
|
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 SrmCenterEntity
|
|
16
|
+
*/
|
|
17
|
+
export interface SrmCenterEntity {
|
|
18
|
+
/**
|
|
19
|
+
*
|
|
20
|
+
* @type {number}
|
|
21
|
+
* @memberof SrmCenterEntity
|
|
22
|
+
*/
|
|
23
|
+
'id'?: number;
|
|
24
|
+
/**
|
|
25
|
+
* 名称
|
|
26
|
+
* @type {string}
|
|
27
|
+
* @memberof SrmCenterEntity
|
|
28
|
+
*/
|
|
29
|
+
'name'?: string;
|
|
30
|
+
/**
|
|
31
|
+
* 编码
|
|
32
|
+
* @type {string}
|
|
33
|
+
* @memberof SrmCenterEntity
|
|
34
|
+
*/
|
|
35
|
+
'code'?: string;
|
|
36
|
+
/**
|
|
37
|
+
* 层级 10:平台 20:大区 30:小微 40:中心 50:园区
|
|
38
|
+
* @type {number}
|
|
39
|
+
* @memberof SrmCenterEntity
|
|
40
|
+
*/
|
|
41
|
+
'level'?: number;
|
|
42
|
+
/**
|
|
43
|
+
* 父级编码
|
|
44
|
+
* @type {string}
|
|
45
|
+
* @memberof SrmCenterEntity
|
|
46
|
+
*/
|
|
47
|
+
'parentCode'?: string;
|
|
48
|
+
/**
|
|
49
|
+
* 所有父级编码
|
|
50
|
+
* @type {Array<string>}
|
|
51
|
+
* @memberof SrmCenterEntity
|
|
52
|
+
*/
|
|
53
|
+
'parentCodes'?: Array<string>;
|
|
54
|
+
}
|
|
@@ -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 });
|