@ningboyz/types 1.1.181 → 1.1.183
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
|
|