@ningboyz/types 1.1.183 → 1.1.185
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
|
@@ -22,6 +22,7 @@ export interface ILoadCellResponse {
|
|
|
22
22
|
colIndex: number;
|
|
23
23
|
colOrder: number;
|
|
24
24
|
cellMemo: string;
|
|
25
|
+
colValue: string;
|
|
25
26
|
}
|
|
26
27
|
|
|
27
28
|
export class TLoadCellResponse implements ILoadCellResponse {
|
|
@@ -48,4 +49,5 @@ export class TLoadCellResponse implements ILoadCellResponse {
|
|
|
48
49
|
colIndex: number = 0;
|
|
49
50
|
colOrder: number = 0;
|
|
50
51
|
cellMemo: string = '';
|
|
52
|
+
colValue: string = '';
|
|
51
53
|
}
|
|
@@ -79,6 +79,11 @@ export interface IZbhdMainResponse {
|
|
|
79
79
|
zxzjName: string; //#专项资金
|
|
80
80
|
zjlyName: string; //#资金来源
|
|
81
81
|
zbhdCtrl: number; //#{1:警告; 别的都是:严格}
|
|
82
|
+
|
|
83
|
+
/**
|
|
84
|
+
* 调剂额度
|
|
85
|
+
*/
|
|
86
|
+
decMoney: number;
|
|
82
87
|
}
|
|
83
88
|
|
|
84
89
|
export class TZbhdMainResponse implements IZbhdMainResponse {
|
|
@@ -163,4 +168,6 @@ export class TZbhdMainResponse implements IZbhdMainResponse {
|
|
|
163
168
|
zxzjName: string = ""; //#专项资金
|
|
164
169
|
zjlyName: string = ""; //#资金来源
|
|
165
170
|
zbhdCtrl: number = 2; //1警告 2严格
|
|
171
|
+
|
|
172
|
+
decMoney: number = 0;
|
|
166
173
|
}
|