@ningboyz/types 1.2.42 → 1.2.44
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
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
import _ from "lodash";
|
|
2
|
+
import { IGamsItemResponse } from "../gams";
|
|
2
3
|
|
|
3
4
|
export interface IZbzbZbflResponse {
|
|
4
5
|
whoBuild: number;
|
|
@@ -112,6 +113,10 @@ export interface IZbzbZbflResponse {
|
|
|
112
113
|
* 归属单位
|
|
113
114
|
*/
|
|
114
115
|
unitTypeText: string;
|
|
116
|
+
/**
|
|
117
|
+
* 资金来源
|
|
118
|
+
*/
|
|
119
|
+
listZJLY: IGamsItemResponse[];
|
|
115
120
|
}
|
|
116
121
|
|
|
117
122
|
export class TZbzbZbflResponse implements IZbzbZbflResponse {
|
|
@@ -211,6 +216,7 @@ export class TZbzbZbflResponse implements IZbzbZbflResponse {
|
|
|
211
216
|
unitMain: number = 0;
|
|
212
217
|
unitNamf: string = "";
|
|
213
218
|
unitTypeText: string = "";
|
|
219
|
+
listZJLY: IGamsItemResponse[] = [];
|
|
214
220
|
|
|
215
221
|
constructor(card: any = {}) {
|
|
216
222
|
if (card) {
|
|
@@ -3,6 +3,7 @@ import * as Const from "../const";
|
|
|
3
3
|
import _ from "lodash";
|
|
4
4
|
import { IZbzbZbflResponse } from "./index";
|
|
5
5
|
import { IDeptResponse, IPathResponse, IUnitResponse } from "../core";
|
|
6
|
+
import { IGamsItemResponse } from "../gams";
|
|
6
7
|
|
|
7
8
|
export interface IZbzdMainResponse {
|
|
8
9
|
whoBuild: number;
|
|
@@ -177,6 +178,10 @@ export interface IZbzdMainResponse {
|
|
|
177
178
|
* 使用部门
|
|
178
179
|
*/
|
|
179
180
|
listYSBM: IDeptResponse[];
|
|
181
|
+
/**
|
|
182
|
+
* 资金来源
|
|
183
|
+
*/
|
|
184
|
+
listZJLY: IGamsItemResponse[];
|
|
180
185
|
}
|
|
181
186
|
|
|
182
187
|
export class TZbzdMainResponse implements IZbzdMainResponse {
|
|
@@ -279,6 +284,7 @@ export class TZbzdMainResponse implements IZbzdMainResponse {
|
|
|
279
284
|
listPath: IPathResponse[] = [];
|
|
280
285
|
listYSDW: IUnitResponse[] = [];
|
|
281
286
|
listYSBM: IDeptResponse[] = [];
|
|
287
|
+
listZJLY: IGamsItemResponse[] = [];
|
|
282
288
|
|
|
283
289
|
constructor(card: any = {}) {
|
|
284
290
|
if (card) {
|