@gizone/rrs-client 4.2.9-alpha.677 → 4.2.9-alpha.679
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 +2 -0
- package/apis/energy-cost-analysis-controller-api.ts +92 -24
- package/dist/apis/energy-cost-analysis-controller-api.d.ts +40 -10
- package/dist/apis/energy-cost-analysis-controller-api.js +84 -22
- package/dist/esm/apis/energy-cost-analysis-controller-api.d.ts +40 -10
- package/dist/esm/apis/energy-cost-analysis-controller-api.js +84 -22
- package/dist/esm/models/budget-balance-query-dto.d.ts +8 -7
- package/dist/esm/models/czy-budget-balance-vo.d.ts +24 -0
- package/dist/esm/models/energy-cost-analysis-query-dto.d.ts +2 -2
- package/dist/esm/models/index.d.ts +2 -0
- package/dist/esm/models/index.js +2 -0
- package/dist/esm/models/ipage-energy-cost-record-info-vo.d.ts +4 -4
- package/dist/esm/models/json-result-list-park-select-vo.d.ts +62 -0
- package/dist/esm/models/json-result-list-park-select-vo.js +14 -0
- package/dist/esm/models/park-select-vo.d.ts +30 -0
- package/dist/esm/models/park-select-vo.js +14 -0
- package/dist/esm/models/sys-user.d.ts +4 -4
- package/dist/models/budget-balance-query-dto.d.ts +8 -7
- package/dist/models/czy-budget-balance-vo.d.ts +24 -0
- package/dist/models/energy-cost-analysis-query-dto.d.ts +2 -2
- package/dist/models/index.d.ts +2 -0
- package/dist/models/index.js +2 -0
- package/dist/models/ipage-energy-cost-record-info-vo.d.ts +4 -4
- package/dist/models/json-result-list-park-select-vo.d.ts +62 -0
- package/dist/models/json-result-list-park-select-vo.js +15 -0
- package/dist/models/park-select-vo.d.ts +30 -0
- package/dist/models/park-select-vo.js +15 -0
- package/dist/models/sys-user.d.ts +4 -4
- package/models/budget-balance-query-dto.ts +12 -7
- package/models/czy-budget-balance-vo.ts +24 -0
- package/models/energy-cost-analysis-query-dto.ts +2 -2
- package/models/index.ts +2 -0
- package/models/ipage-energy-cost-record-info-vo.ts +4 -4
- package/models/json-result-list-park-select-vo.ts +72 -0
- package/models/park-select-vo.ts +36 -0
- package/models/sys-user.ts +4 -4
- package/ossutil.log +1221 -1221
- package/package.json +1 -1
|
@@ -9,6 +9,7 @@
|
|
|
9
9
|
* https://openapi-generator.tech
|
|
10
10
|
* Do not edit the class manually.
|
|
11
11
|
*/
|
|
12
|
+
import type { ExpenseSubjectEnum } from './expense-subject-enum';
|
|
12
13
|
/**
|
|
13
14
|
* 查询预算余额
|
|
14
15
|
* @export
|
|
@@ -26,29 +27,29 @@ export interface BudgetBalanceQueryDto {
|
|
|
26
27
|
* @type {number}
|
|
27
28
|
* @memberof BudgetBalanceQueryDto
|
|
28
29
|
*/
|
|
29
|
-
'budgetYear'
|
|
30
|
+
'budgetYear': number;
|
|
30
31
|
/**
|
|
31
32
|
* 预算月份(1-12)
|
|
32
33
|
* @type {number}
|
|
33
34
|
* @memberof BudgetBalanceQueryDto
|
|
34
35
|
*/
|
|
35
|
-
'budgetMonth'
|
|
36
|
+
'budgetMonth': number;
|
|
36
37
|
/**
|
|
37
38
|
* 预算部门编码
|
|
38
39
|
* @type {string}
|
|
39
40
|
* @memberof BudgetBalanceQueryDto
|
|
40
41
|
*/
|
|
41
|
-
'budgeterCode'
|
|
42
|
+
'budgeterCode': string;
|
|
42
43
|
/**
|
|
43
|
-
*
|
|
44
|
-
* @type {
|
|
44
|
+
*
|
|
45
|
+
* @type {ExpenseSubjectEnum}
|
|
45
46
|
* @memberof BudgetBalanceQueryDto
|
|
46
47
|
*/
|
|
47
|
-
'
|
|
48
|
+
'expenseSubject': ExpenseSubjectEnum;
|
|
48
49
|
/**
|
|
49
50
|
* 法人组织编码
|
|
50
51
|
* @type {string}
|
|
51
52
|
* @memberof BudgetBalanceQueryDto
|
|
52
53
|
*/
|
|
53
|
-
'companyCode'
|
|
54
|
+
'companyCode': string;
|
|
54
55
|
}
|
|
@@ -45,4 +45,28 @@ export interface CzyBudgetBalanceVo {
|
|
|
45
45
|
* @memberof CzyBudgetBalanceVo
|
|
46
46
|
*/
|
|
47
47
|
'controlTime'?: number;
|
|
48
|
+
/**
|
|
49
|
+
* 法人策略编码
|
|
50
|
+
* @type {string}
|
|
51
|
+
* @memberof CzyBudgetBalanceVo
|
|
52
|
+
*/
|
|
53
|
+
'corporationPolicyNo'?: string;
|
|
54
|
+
/**
|
|
55
|
+
* 法人可用预算金额
|
|
56
|
+
* @type {number}
|
|
57
|
+
* @memberof CzyBudgetBalanceVo
|
|
58
|
+
*/
|
|
59
|
+
'corporationAmount'?: number;
|
|
60
|
+
/**
|
|
61
|
+
* 法人预算控制时间维度
|
|
62
|
+
* @type {number}
|
|
63
|
+
* @memberof CzyBudgetBalanceVo
|
|
64
|
+
*/
|
|
65
|
+
'corporationControlCycle'?: number;
|
|
66
|
+
/**
|
|
67
|
+
* 法人预算控制时间
|
|
68
|
+
* @type {number}
|
|
69
|
+
* @memberof CzyBudgetBalanceVo
|
|
70
|
+
*/
|
|
71
|
+
'corporationControlTime'?: number;
|
|
48
72
|
}
|
|
@@ -65,10 +65,10 @@ export interface EnergyCostAnalysisQueryDTO {
|
|
|
65
65
|
'plannedEndTime'?: number;
|
|
66
66
|
/**
|
|
67
67
|
* 账单月,格式:yyyy-MM
|
|
68
|
-
* @type {string}
|
|
68
|
+
* @type {Array<string>}
|
|
69
69
|
* @memberof EnergyCostAnalysisQueryDTO
|
|
70
70
|
*/
|
|
71
|
-
'
|
|
71
|
+
'billMonths': Array<string>;
|
|
72
72
|
/**
|
|
73
73
|
* 能源类型列表
|
|
74
74
|
* @type {Array<string>}
|
package/dist/models/index.d.ts
CHANGED
|
@@ -294,6 +294,7 @@ export * from './json-result-list-maintenance-standard-entity';
|
|
|
294
294
|
export * from './json-result-list-mdm-increment-vendor-bank-accounts-vo';
|
|
295
295
|
export * from './json-result-list-mdm-increment-vendors-vo';
|
|
296
296
|
export * from './json-result-list-park-list-dto';
|
|
297
|
+
export * from './json-result-list-park-select-vo';
|
|
297
298
|
export * from './json-result-list-plan-calendar-list-vo';
|
|
298
299
|
export * from './json-result-list-plan-calendar-vo';
|
|
299
300
|
export * from './json-result-list-reimbursement-bill-payer-vo';
|
|
@@ -453,6 +454,7 @@ export * from './park-info-edit-vo';
|
|
|
453
454
|
export * from './park-list-dto';
|
|
454
455
|
export * from './park-plat-form-enum';
|
|
455
456
|
export * from './park-push-settings-add-bo';
|
|
457
|
+
export * from './park-select-vo';
|
|
456
458
|
export * from './park-settings-details-dto';
|
|
457
459
|
export * from './park-settings-vo';
|
|
458
460
|
export * from './payment-method-enum';
|
package/dist/models/index.js
CHANGED
|
@@ -310,6 +310,7 @@ __exportStar(require("./json-result-list-maintenance-standard-entity"), exports)
|
|
|
310
310
|
__exportStar(require("./json-result-list-mdm-increment-vendor-bank-accounts-vo"), exports);
|
|
311
311
|
__exportStar(require("./json-result-list-mdm-increment-vendors-vo"), exports);
|
|
312
312
|
__exportStar(require("./json-result-list-park-list-dto"), exports);
|
|
313
|
+
__exportStar(require("./json-result-list-park-select-vo"), exports);
|
|
313
314
|
__exportStar(require("./json-result-list-plan-calendar-list-vo"), exports);
|
|
314
315
|
__exportStar(require("./json-result-list-plan-calendar-vo"), exports);
|
|
315
316
|
__exportStar(require("./json-result-list-reimbursement-bill-payer-vo"), exports);
|
|
@@ -469,6 +470,7 @@ __exportStar(require("./park-info-edit-vo"), exports);
|
|
|
469
470
|
__exportStar(require("./park-list-dto"), exports);
|
|
470
471
|
__exportStar(require("./park-plat-form-enum"), exports);
|
|
471
472
|
__exportStar(require("./park-push-settings-add-bo"), exports);
|
|
473
|
+
__exportStar(require("./park-select-vo"), exports);
|
|
472
474
|
__exportStar(require("./park-settings-details-dto"), exports);
|
|
473
475
|
__exportStar(require("./park-settings-vo"), exports);
|
|
474
476
|
__exportStar(require("./payment-method-enum"), exports);
|
|
@@ -36,16 +36,16 @@ export interface IPageEnergyCostRecordInfoVO {
|
|
|
36
36
|
'records'?: Array<EnergyCostRecordInfoVO>;
|
|
37
37
|
/**
|
|
38
38
|
*
|
|
39
|
-
* @type {
|
|
39
|
+
* @type {boolean}
|
|
40
40
|
* @memberof IPageEnergyCostRecordInfoVO
|
|
41
41
|
*/
|
|
42
|
-
'
|
|
42
|
+
'searchCount'?: boolean;
|
|
43
43
|
/**
|
|
44
44
|
*
|
|
45
|
-
* @type {
|
|
45
|
+
* @type {number}
|
|
46
46
|
* @memberof IPageEnergyCostRecordInfoVO
|
|
47
47
|
*/
|
|
48
|
-
'
|
|
48
|
+
'pages'?: number;
|
|
49
49
|
/**
|
|
50
50
|
*
|
|
51
51
|
* @type {boolean}
|
|
@@ -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 { ParkSelectVO } from './park-select-vo';
|
|
14
|
+
/**
|
|
15
|
+
*
|
|
16
|
+
* @export
|
|
17
|
+
* @interface JsonResultListParkSelectVO
|
|
18
|
+
*/
|
|
19
|
+
export interface JsonResultListParkSelectVO {
|
|
20
|
+
/**
|
|
21
|
+
* 错误码,0:成功,其他:失败
|
|
22
|
+
* @type {number}
|
|
23
|
+
* @memberof JsonResultListParkSelectVO
|
|
24
|
+
*/
|
|
25
|
+
'code'?: number;
|
|
26
|
+
/**
|
|
27
|
+
* 错误消息
|
|
28
|
+
* @type {string}
|
|
29
|
+
* @memberof JsonResultListParkSelectVO
|
|
30
|
+
*/
|
|
31
|
+
'msg'?: string;
|
|
32
|
+
/**
|
|
33
|
+
* 错误堆栈
|
|
34
|
+
* @type {string}
|
|
35
|
+
* @memberof JsonResultListParkSelectVO
|
|
36
|
+
*/
|
|
37
|
+
'stacks'?: string;
|
|
38
|
+
/**
|
|
39
|
+
* 返回数据,可以是任意类型的值
|
|
40
|
+
* @type {Array<ParkSelectVO>}
|
|
41
|
+
* @memberof JsonResultListParkSelectVO
|
|
42
|
+
*/
|
|
43
|
+
'data'?: Array<ParkSelectVO> | null;
|
|
44
|
+
/**
|
|
45
|
+
*
|
|
46
|
+
* @type {BaseErrorResult}
|
|
47
|
+
* @memberof JsonResultListParkSelectVO
|
|
48
|
+
*/
|
|
49
|
+
'error'?: BaseErrorResult | null;
|
|
50
|
+
/**
|
|
51
|
+
* 日志追踪ID
|
|
52
|
+
* @type {string}
|
|
53
|
+
* @memberof JsonResultListParkSelectVO
|
|
54
|
+
*/
|
|
55
|
+
'traceId'?: string | null;
|
|
56
|
+
/**
|
|
57
|
+
* requestId
|
|
58
|
+
* @type {string}
|
|
59
|
+
* @memberof JsonResultListParkSelectVO
|
|
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,30 @@
|
|
|
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
|
+
* 园区下拉选项VO
|
|
14
|
+
* @export
|
|
15
|
+
* @interface ParkSelectVO
|
|
16
|
+
*/
|
|
17
|
+
export interface ParkSelectVO {
|
|
18
|
+
/**
|
|
19
|
+
* 园区id
|
|
20
|
+
* @type {number}
|
|
21
|
+
* @memberof ParkSelectVO
|
|
22
|
+
*/
|
|
23
|
+
'deptId'?: number;
|
|
24
|
+
/**
|
|
25
|
+
* 园区名称
|
|
26
|
+
* @type {string}
|
|
27
|
+
* @memberof ParkSelectVO
|
|
28
|
+
*/
|
|
29
|
+
'deptName'?: string;
|
|
30
|
+
}
|
|
@@ -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 });
|
|
@@ -377,14 +377,14 @@ export interface SysUser {
|
|
|
377
377
|
'sourceUserId'?: string;
|
|
378
378
|
/**
|
|
379
379
|
*
|
|
380
|
-
* @type {
|
|
380
|
+
* @type {number}
|
|
381
381
|
* @memberof SysUser
|
|
382
382
|
*/
|
|
383
|
-
'
|
|
383
|
+
'cuserId'?: number;
|
|
384
384
|
/**
|
|
385
385
|
*
|
|
386
|
-
* @type {
|
|
386
|
+
* @type {string}
|
|
387
387
|
* @memberof SysUser
|
|
388
388
|
*/
|
|
389
|
-
'
|
|
389
|
+
'cid'?: string;
|
|
390
390
|
}
|
|
@@ -13,6 +13,9 @@
|
|
|
13
13
|
*/
|
|
14
14
|
|
|
15
15
|
|
|
16
|
+
// May contain unused imports in some cases
|
|
17
|
+
// @ts-ignore
|
|
18
|
+
import type { ExpenseSubjectEnum } from './expense-subject-enum';
|
|
16
19
|
|
|
17
20
|
/**
|
|
18
21
|
* 查询预算余额
|
|
@@ -31,30 +34,32 @@ export interface BudgetBalanceQueryDto {
|
|
|
31
34
|
* @type {number}
|
|
32
35
|
* @memberof BudgetBalanceQueryDto
|
|
33
36
|
*/
|
|
34
|
-
'budgetYear'
|
|
37
|
+
'budgetYear': number;
|
|
35
38
|
/**
|
|
36
39
|
* 预算月份(1-12)
|
|
37
40
|
* @type {number}
|
|
38
41
|
* @memberof BudgetBalanceQueryDto
|
|
39
42
|
*/
|
|
40
|
-
'budgetMonth'
|
|
43
|
+
'budgetMonth': number;
|
|
41
44
|
/**
|
|
42
45
|
* 预算部门编码
|
|
43
46
|
* @type {string}
|
|
44
47
|
* @memberof BudgetBalanceQueryDto
|
|
45
48
|
*/
|
|
46
|
-
'budgeterCode'
|
|
49
|
+
'budgeterCode': string;
|
|
47
50
|
/**
|
|
48
|
-
*
|
|
49
|
-
* @type {
|
|
51
|
+
*
|
|
52
|
+
* @type {ExpenseSubjectEnum}
|
|
50
53
|
* @memberof BudgetBalanceQueryDto
|
|
51
54
|
*/
|
|
52
|
-
'
|
|
55
|
+
'expenseSubject': ExpenseSubjectEnum;
|
|
53
56
|
/**
|
|
54
57
|
* 法人组织编码
|
|
55
58
|
* @type {string}
|
|
56
59
|
* @memberof BudgetBalanceQueryDto
|
|
57
60
|
*/
|
|
58
|
-
'companyCode'
|
|
61
|
+
'companyCode': string;
|
|
59
62
|
}
|
|
60
63
|
|
|
64
|
+
|
|
65
|
+
|
|
@@ -50,5 +50,29 @@ export interface CzyBudgetBalanceVo {
|
|
|
50
50
|
* @memberof CzyBudgetBalanceVo
|
|
51
51
|
*/
|
|
52
52
|
'controlTime'?: number;
|
|
53
|
+
/**
|
|
54
|
+
* 法人策略编码
|
|
55
|
+
* @type {string}
|
|
56
|
+
* @memberof CzyBudgetBalanceVo
|
|
57
|
+
*/
|
|
58
|
+
'corporationPolicyNo'?: string;
|
|
59
|
+
/**
|
|
60
|
+
* 法人可用预算金额
|
|
61
|
+
* @type {number}
|
|
62
|
+
* @memberof CzyBudgetBalanceVo
|
|
63
|
+
*/
|
|
64
|
+
'corporationAmount'?: number;
|
|
65
|
+
/**
|
|
66
|
+
* 法人预算控制时间维度
|
|
67
|
+
* @type {number}
|
|
68
|
+
* @memberof CzyBudgetBalanceVo
|
|
69
|
+
*/
|
|
70
|
+
'corporationControlCycle'?: number;
|
|
71
|
+
/**
|
|
72
|
+
* 法人预算控制时间
|
|
73
|
+
* @type {number}
|
|
74
|
+
* @memberof CzyBudgetBalanceVo
|
|
75
|
+
*/
|
|
76
|
+
'corporationControlTime'?: number;
|
|
53
77
|
}
|
|
54
78
|
|
|
@@ -70,10 +70,10 @@ export interface EnergyCostAnalysisQueryDTO {
|
|
|
70
70
|
'plannedEndTime'?: number;
|
|
71
71
|
/**
|
|
72
72
|
* 账单月,格式:yyyy-MM
|
|
73
|
-
* @type {string}
|
|
73
|
+
* @type {Array<string>}
|
|
74
74
|
* @memberof EnergyCostAnalysisQueryDTO
|
|
75
75
|
*/
|
|
76
|
-
'
|
|
76
|
+
'billMonths': Array<string>;
|
|
77
77
|
/**
|
|
78
78
|
* 能源类型列表
|
|
79
79
|
* @type {Array<string>}
|
package/models/index.ts
CHANGED
|
@@ -294,6 +294,7 @@ export * from './json-result-list-maintenance-standard-entity';
|
|
|
294
294
|
export * from './json-result-list-mdm-increment-vendor-bank-accounts-vo';
|
|
295
295
|
export * from './json-result-list-mdm-increment-vendors-vo';
|
|
296
296
|
export * from './json-result-list-park-list-dto';
|
|
297
|
+
export * from './json-result-list-park-select-vo';
|
|
297
298
|
export * from './json-result-list-plan-calendar-list-vo';
|
|
298
299
|
export * from './json-result-list-plan-calendar-vo';
|
|
299
300
|
export * from './json-result-list-reimbursement-bill-payer-vo';
|
|
@@ -453,6 +454,7 @@ export * from './park-info-edit-vo';
|
|
|
453
454
|
export * from './park-list-dto';
|
|
454
455
|
export * from './park-plat-form-enum';
|
|
455
456
|
export * from './park-push-settings-add-bo';
|
|
457
|
+
export * from './park-select-vo';
|
|
456
458
|
export * from './park-settings-details-dto';
|
|
457
459
|
export * from './park-settings-vo';
|
|
458
460
|
export * from './payment-method-enum';
|
|
@@ -43,16 +43,16 @@ export interface IPageEnergyCostRecordInfoVO {
|
|
|
43
43
|
'records'?: Array<EnergyCostRecordInfoVO>;
|
|
44
44
|
/**
|
|
45
45
|
*
|
|
46
|
-
* @type {
|
|
46
|
+
* @type {boolean}
|
|
47
47
|
* @memberof IPageEnergyCostRecordInfoVO
|
|
48
48
|
*/
|
|
49
|
-
'
|
|
49
|
+
'searchCount'?: boolean;
|
|
50
50
|
/**
|
|
51
51
|
*
|
|
52
|
-
* @type {
|
|
52
|
+
* @type {number}
|
|
53
53
|
* @memberof IPageEnergyCostRecordInfoVO
|
|
54
54
|
*/
|
|
55
|
-
'
|
|
55
|
+
'pages'?: number;
|
|
56
56
|
/**
|
|
57
57
|
*
|
|
58
58
|
* @type {boolean}
|
|
@@ -0,0 +1,72 @@
|
|
|
1
|
+
/* tslint:disable */
|
|
2
|
+
/* eslint-disable */
|
|
3
|
+
/**
|
|
4
|
+
* OpenAPI definition
|
|
5
|
+
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
|
|
6
|
+
*
|
|
7
|
+
* The version of the OpenAPI document: v0
|
|
8
|
+
*
|
|
9
|
+
*
|
|
10
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
11
|
+
* https://openapi-generator.tech
|
|
12
|
+
* Do not edit the class manually.
|
|
13
|
+
*/
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
// May contain unused imports in some cases
|
|
17
|
+
// @ts-ignore
|
|
18
|
+
import type { BaseErrorResult } from './base-error-result';
|
|
19
|
+
// May contain unused imports in some cases
|
|
20
|
+
// @ts-ignore
|
|
21
|
+
import type { ParkSelectVO } from './park-select-vo';
|
|
22
|
+
|
|
23
|
+
/**
|
|
24
|
+
*
|
|
25
|
+
* @export
|
|
26
|
+
* @interface JsonResultListParkSelectVO
|
|
27
|
+
*/
|
|
28
|
+
export interface JsonResultListParkSelectVO {
|
|
29
|
+
/**
|
|
30
|
+
* 错误码,0:成功,其他:失败
|
|
31
|
+
* @type {number}
|
|
32
|
+
* @memberof JsonResultListParkSelectVO
|
|
33
|
+
*/
|
|
34
|
+
'code'?: number;
|
|
35
|
+
/**
|
|
36
|
+
* 错误消息
|
|
37
|
+
* @type {string}
|
|
38
|
+
* @memberof JsonResultListParkSelectVO
|
|
39
|
+
*/
|
|
40
|
+
'msg'?: string;
|
|
41
|
+
/**
|
|
42
|
+
* 错误堆栈
|
|
43
|
+
* @type {string}
|
|
44
|
+
* @memberof JsonResultListParkSelectVO
|
|
45
|
+
*/
|
|
46
|
+
'stacks'?: string;
|
|
47
|
+
/**
|
|
48
|
+
* 返回数据,可以是任意类型的值
|
|
49
|
+
* @type {Array<ParkSelectVO>}
|
|
50
|
+
* @memberof JsonResultListParkSelectVO
|
|
51
|
+
*/
|
|
52
|
+
'data'?: Array<ParkSelectVO> | null;
|
|
53
|
+
/**
|
|
54
|
+
*
|
|
55
|
+
* @type {BaseErrorResult}
|
|
56
|
+
* @memberof JsonResultListParkSelectVO
|
|
57
|
+
*/
|
|
58
|
+
'error'?: BaseErrorResult | null;
|
|
59
|
+
/**
|
|
60
|
+
* 日志追踪ID
|
|
61
|
+
* @type {string}
|
|
62
|
+
* @memberof JsonResultListParkSelectVO
|
|
63
|
+
*/
|
|
64
|
+
'traceId'?: string | null;
|
|
65
|
+
/**
|
|
66
|
+
* requestId
|
|
67
|
+
* @type {string}
|
|
68
|
+
* @memberof JsonResultListParkSelectVO
|
|
69
|
+
*/
|
|
70
|
+
'requestId'?: string | null;
|
|
71
|
+
}
|
|
72
|
+
|
|
@@ -0,0 +1,36 @@
|
|
|
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
|
+
* 园区下拉选项VO
|
|
19
|
+
* @export
|
|
20
|
+
* @interface ParkSelectVO
|
|
21
|
+
*/
|
|
22
|
+
export interface ParkSelectVO {
|
|
23
|
+
/**
|
|
24
|
+
* 园区id
|
|
25
|
+
* @type {number}
|
|
26
|
+
* @memberof ParkSelectVO
|
|
27
|
+
*/
|
|
28
|
+
'deptId'?: number;
|
|
29
|
+
/**
|
|
30
|
+
* 园区名称
|
|
31
|
+
* @type {string}
|
|
32
|
+
* @memberof ParkSelectVO
|
|
33
|
+
*/
|
|
34
|
+
'deptName'?: string;
|
|
35
|
+
}
|
|
36
|
+
|
package/models/sys-user.ts
CHANGED
|
@@ -388,16 +388,16 @@ export interface SysUser {
|
|
|
388
388
|
'sourceUserId'?: string;
|
|
389
389
|
/**
|
|
390
390
|
*
|
|
391
|
-
* @type {
|
|
391
|
+
* @type {number}
|
|
392
392
|
* @memberof SysUser
|
|
393
393
|
*/
|
|
394
|
-
'
|
|
394
|
+
'cuserId'?: number;
|
|
395
395
|
/**
|
|
396
396
|
*
|
|
397
|
-
* @type {
|
|
397
|
+
* @type {string}
|
|
398
398
|
* @memberof SysUser
|
|
399
399
|
*/
|
|
400
|
-
'
|
|
400
|
+
'cid'?: string;
|
|
401
401
|
}
|
|
402
402
|
|
|
403
403
|
|