@ningboyz/types 1.1.181 → 1.1.184
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
|
@@ -89,6 +89,8 @@ export interface IHzcbMainResponse {
|
|
|
89
89
|
hzcbXmqx: number;
|
|
90
90
|
/** 项目概述 */
|
|
91
91
|
hzcbXmgk: string;
|
|
92
|
+
/** 一体化单位编码 */
|
|
93
|
+
codeTxt1: string;
|
|
92
94
|
|
|
93
95
|
fromOutMoney: number;
|
|
94
96
|
fromHzcbMemo: string;
|
|
@@ -185,6 +187,8 @@ export class THzcbMainResponse implements IHzcbMainResponse {
|
|
|
185
187
|
hzcbXmqx: number = 0;
|
|
186
188
|
/** 项目概述 */
|
|
187
189
|
hzcbXmgk: string = '';
|
|
190
|
+
/** 一体化单位编码 */
|
|
191
|
+
codeTxt1: string = '';
|
|
188
192
|
|
|
189
193
|
fromOutMoney: number = 0;
|
|
190
194
|
fromHzcbMemo: string = "";
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import { IPathResponse } from "../core";
|
|
1
2
|
import { IHzcbMainResponse } from "../hzcb";
|
|
2
3
|
import { IYzhtBillResponse } from "./IYzhtBillResponse";
|
|
3
4
|
|
|
@@ -11,7 +12,7 @@ export interface IYzhtMainResponse {
|
|
|
11
12
|
dataLevl: number;
|
|
12
13
|
dataFrom: number;
|
|
13
14
|
kjndKJQJ: number;
|
|
14
|
-
|
|
15
|
+
listPath: IPathResponse[];
|
|
15
16
|
dataStat: number;
|
|
16
17
|
dataOrdr: number;
|
|
17
18
|
dataHide: number;
|
|
@@ -232,7 +233,7 @@ export class TYzhtMainResponse implements IYzhtMainResponse {
|
|
|
232
233
|
dataDate: number = 0;
|
|
233
234
|
dataTime: number = 0;
|
|
234
235
|
dataGUID: string = "";
|
|
235
|
-
|
|
236
|
+
listPath: IPathResponse[] = [];
|
|
236
237
|
mastName: string = "";
|
|
237
238
|
mastGUID: string = "";
|
|
238
239
|
|
|
@@ -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
|
}
|