@ningboyz/types 1.1.188 → 1.1.190
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,3 +1,6 @@
|
|
|
1
|
+
import { IDeptResponse, IUnitResponse } from "../core";
|
|
2
|
+
import { IGamsK0kmResponse } from "../gams";
|
|
3
|
+
|
|
1
4
|
export interface IZbhdMainResponse {
|
|
2
5
|
whoBuild: number;
|
|
3
6
|
userIndx: number;
|
|
@@ -84,6 +87,26 @@ export interface IZbhdMainResponse {
|
|
|
84
87
|
* 调剂额度
|
|
85
88
|
*/
|
|
86
89
|
decMoney: number;
|
|
90
|
+
/**
|
|
91
|
+
* 科目分类
|
|
92
|
+
*/
|
|
93
|
+
gamsName: string;
|
|
94
|
+
/**
|
|
95
|
+
* 使用单位
|
|
96
|
+
*/
|
|
97
|
+
ysdwName: string;
|
|
98
|
+
/**
|
|
99
|
+
* 科目分类
|
|
100
|
+
*/
|
|
101
|
+
listGAMS: IGamsK0kmResponse[];
|
|
102
|
+
/**
|
|
103
|
+
* 使用单位
|
|
104
|
+
*/
|
|
105
|
+
listYSDW: IUnitResponse[];
|
|
106
|
+
/**
|
|
107
|
+
* 使用部门
|
|
108
|
+
*/
|
|
109
|
+
listYSBM: IDeptResponse[];
|
|
87
110
|
}
|
|
88
111
|
|
|
89
112
|
export class TZbhdMainResponse implements IZbhdMainResponse {
|
|
@@ -170,4 +193,9 @@ export class TZbhdMainResponse implements IZbhdMainResponse {
|
|
|
170
193
|
zbhdCtrl: number = 2; //1警告 2严格
|
|
171
194
|
|
|
172
195
|
decMoney: number = 0;
|
|
196
|
+
gamsName: string = "";
|
|
197
|
+
ysdwName: string = "";
|
|
198
|
+
listGAMS: IGamsK0kmResponse[] = [];
|
|
199
|
+
listYSDW: IUnitResponse[] = [];
|
|
200
|
+
listYSBM: IDeptResponse[] = [];
|
|
173
201
|
}
|
|
@@ -2,6 +2,7 @@ import { TFlowDataResponse } from "../flow/IFlowDataResponse";
|
|
|
2
2
|
import * as Const from "../const";
|
|
3
3
|
import _ from "lodash";
|
|
4
4
|
import { IZbzbZbflResponse } from "./index";
|
|
5
|
+
import { IDeptResponse, IPathResponse, IUnitResponse } from "../core";
|
|
5
6
|
|
|
6
7
|
export interface IZbzdMainResponse {
|
|
7
8
|
whoBuild: number;
|
|
@@ -143,14 +144,32 @@ export interface IZbzdMainResponse {
|
|
|
143
144
|
* 是否锁定
|
|
144
145
|
*/
|
|
145
146
|
lockMode: number;
|
|
147
|
+
/**
|
|
148
|
+
* 使用单位
|
|
149
|
+
*/
|
|
150
|
+
ysdwIndx: number;
|
|
151
|
+
/**
|
|
152
|
+
* 使用单位
|
|
153
|
+
*/
|
|
154
|
+
ysdwName: string;
|
|
155
|
+
/**
|
|
156
|
+
* 使用部门
|
|
157
|
+
*/
|
|
158
|
+
ysbmName: string;
|
|
146
159
|
|
|
147
160
|
/**
|
|
148
161
|
* 指标分录
|
|
149
162
|
*/
|
|
150
163
|
listZBFL: IZbzbZbflResponse[];
|
|
151
|
-
listPath:
|
|
152
|
-
|
|
153
|
-
|
|
164
|
+
listPath: IPathResponse[];
|
|
165
|
+
/**
|
|
166
|
+
* 使用单位
|
|
167
|
+
*/
|
|
168
|
+
listYSDW: IUnitResponse[];
|
|
169
|
+
/**
|
|
170
|
+
* 使用部门
|
|
171
|
+
*/
|
|
172
|
+
listYSBM: IDeptResponse[];
|
|
154
173
|
}
|
|
155
174
|
|
|
156
175
|
export class TZbzdMainResponse implements IZbzdMainResponse {
|
|
@@ -243,11 +262,14 @@ export class TZbzdMainResponse implements IZbzdMainResponse {
|
|
|
243
262
|
zbhdHdid: number = 0;
|
|
244
263
|
zbflFlid: number = 0;
|
|
245
264
|
lockMode: number = 0;
|
|
265
|
+
ysdwIndx: number = 0;
|
|
266
|
+
ysdwName: string = "";
|
|
267
|
+
ysbmName: string = "";
|
|
246
268
|
|
|
247
269
|
listZBFL: IZbzbZbflResponse[] = [];
|
|
248
|
-
listPath:
|
|
249
|
-
|
|
250
|
-
|
|
270
|
+
listPath: IPathResponse[] = [];
|
|
271
|
+
listYSDW: IUnitResponse[] = [];
|
|
272
|
+
listYSBM: IDeptResponse[] = [];
|
|
251
273
|
|
|
252
274
|
constructor(card: any = {}) {
|
|
253
275
|
if (card) {
|