@ningboyz/types 1.2.39 → 1.2.41
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/package.json
CHANGED
|
@@ -37,6 +37,27 @@ export interface IGamsItemResponse {
|
|
|
37
37
|
itemMemo: string;
|
|
38
38
|
multiVal: number;
|
|
39
39
|
itemPara: string;
|
|
40
|
+
|
|
41
|
+
/**
|
|
42
|
+
* 额度总额
|
|
43
|
+
*/
|
|
44
|
+
allMoney: number;
|
|
45
|
+
/**
|
|
46
|
+
* 事前占用
|
|
47
|
+
*/
|
|
48
|
+
unFormal: number;
|
|
49
|
+
/**
|
|
50
|
+
* 事后占用
|
|
51
|
+
*/
|
|
52
|
+
onFormal: number;
|
|
53
|
+
/**
|
|
54
|
+
* 报销支出
|
|
55
|
+
*/
|
|
56
|
+
outMoney: number;
|
|
57
|
+
/**
|
|
58
|
+
* 额度结余
|
|
59
|
+
*/
|
|
60
|
+
nowMoney: number;
|
|
40
61
|
}
|
|
41
62
|
|
|
42
63
|
export class TGamsItemResponse implements IGamsItemResponse {
|
|
@@ -79,4 +100,10 @@ export class TGamsItemResponse implements IGamsItemResponse {
|
|
|
79
100
|
multiVal: number = 0;
|
|
80
101
|
/** 参数约定 */
|
|
81
102
|
itemPara: string = "";
|
|
103
|
+
|
|
104
|
+
allMoney: number = 0;
|
|
105
|
+
unFormal: number = 0;
|
|
106
|
+
onFormal: number = 0;
|
|
107
|
+
outMoney: number = 0;
|
|
108
|
+
nowMoney: number = 0;
|
|
82
109
|
}
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { IDeptResponse, IDictResponse, IUnitResponse } from "../core";
|
|
2
|
-
import { IGamsK0kmResponse } from "../gams";
|
|
2
|
+
import { IGamsItemResponse, IGamsK0kmResponse } from "../gams";
|
|
3
3
|
|
|
4
4
|
export interface IZbhdMainResponse {
|
|
5
5
|
whoBuild: number;
|
|
@@ -139,6 +139,10 @@ export interface IZbhdMainResponse {
|
|
|
139
139
|
* 资金性质
|
|
140
140
|
*/
|
|
141
141
|
listZJXZ: IDictResponse[];
|
|
142
|
+
/**
|
|
143
|
+
* 资金来源
|
|
144
|
+
*/
|
|
145
|
+
listZJLY: IGamsItemResponse[];
|
|
142
146
|
}
|
|
143
147
|
|
|
144
148
|
export class TZbhdMainResponse implements IZbhdMainResponse {
|
|
@@ -238,4 +242,5 @@ export class TZbhdMainResponse implements IZbhdMainResponse {
|
|
|
238
242
|
listYSDW: IUnitResponse[] = [];
|
|
239
243
|
listYSBM: IDeptResponse[] = [];
|
|
240
244
|
listZJXZ: IDictResponse[] = [];
|
|
245
|
+
listZJLY: IGamsItemResponse[] = [];
|
|
241
246
|
}
|