@ningboyz/types 1.1.189 → 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
|
}
|
|
@@ -144,13 +144,24 @@ export interface IZbzdMainResponse {
|
|
|
144
144
|
* 是否锁定
|
|
145
145
|
*/
|
|
146
146
|
lockMode: number;
|
|
147
|
+
/**
|
|
148
|
+
* 使用单位
|
|
149
|
+
*/
|
|
150
|
+
ysdwIndx: number;
|
|
151
|
+
/**
|
|
152
|
+
* 使用单位
|
|
153
|
+
*/
|
|
154
|
+
ysdwName: string;
|
|
155
|
+
/**
|
|
156
|
+
* 使用部门
|
|
157
|
+
*/
|
|
158
|
+
ysbmName: string;
|
|
147
159
|
|
|
148
160
|
/**
|
|
149
161
|
* 指标分录
|
|
150
162
|
*/
|
|
151
163
|
listZBFL: IZbzbZbflResponse[];
|
|
152
164
|
listPath: IPathResponse[];
|
|
153
|
-
|
|
154
165
|
/**
|
|
155
166
|
* 使用单位
|
|
156
167
|
*/
|
|
@@ -158,7 +169,7 @@ export interface IZbzdMainResponse {
|
|
|
158
169
|
/**
|
|
159
170
|
* 使用部门
|
|
160
171
|
*/
|
|
161
|
-
|
|
172
|
+
listYSBM: IDeptResponse[];
|
|
162
173
|
}
|
|
163
174
|
|
|
164
175
|
export class TZbzdMainResponse implements IZbzdMainResponse {
|
|
@@ -251,11 +262,14 @@ export class TZbzdMainResponse implements IZbzdMainResponse {
|
|
|
251
262
|
zbhdHdid: number = 0;
|
|
252
263
|
zbflFlid: number = 0;
|
|
253
264
|
lockMode: number = 0;
|
|
265
|
+
ysdwIndx: number = 0;
|
|
266
|
+
ysdwName: string = "";
|
|
267
|
+
ysbmName: string = "";
|
|
254
268
|
|
|
255
269
|
listZBFL: IZbzbZbflResponse[] = [];
|
|
256
270
|
listPath: IPathResponse[] = [];
|
|
257
271
|
listYSDW: IUnitResponse[] = [];
|
|
258
|
-
|
|
272
|
+
listYSBM: IDeptResponse[] = [];
|
|
259
273
|
|
|
260
274
|
constructor(card: any = {}) {
|
|
261
275
|
if (card) {
|