@gizone/rrs-client 4.2.9-alpha.678 → 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/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/ipage-energy-cost-record-info-vo.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/ipage-energy-cost-record-info-vo.d.ts +4 -4
- package/models/budget-balance-query-dto.ts +12 -7
- package/models/czy-budget-balance-vo.ts +24 -0
- package/models/ipage-energy-cost-record-info-vo.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
|
}
|
|
@@ -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}
|
|
@@ -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
|
}
|
|
@@ -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}
|
|
@@ -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
|
|
|
@@ -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}
|