@ningboyz/types 1.1.192 → 1.1.194
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,4 @@
|
|
|
1
|
-
import { IDeptResponse, IUnitResponse } from "../core";
|
|
1
|
+
import { IDeptResponse, IDictResponse, IUnitResponse } from "../core";
|
|
2
2
|
import { IGamsK0kmResponse } from "../gams";
|
|
3
3
|
|
|
4
4
|
export interface IZbhdMainResponse {
|
|
@@ -95,6 +95,14 @@ export interface IZbhdMainResponse {
|
|
|
95
95
|
* 使用单位
|
|
96
96
|
*/
|
|
97
97
|
ysdwName: string;
|
|
98
|
+
/**
|
|
99
|
+
* 事项类型
|
|
100
|
+
*/
|
|
101
|
+
dictName: string;
|
|
102
|
+
/**
|
|
103
|
+
* 参数约定
|
|
104
|
+
*/
|
|
105
|
+
withPara: string;
|
|
98
106
|
/**
|
|
99
107
|
* 科目分类
|
|
100
108
|
*/
|
|
@@ -107,6 +115,14 @@ export interface IZbhdMainResponse {
|
|
|
107
115
|
* 使用部门
|
|
108
116
|
*/
|
|
109
117
|
listYSBM: IDeptResponse[];
|
|
118
|
+
/**
|
|
119
|
+
* 事项类型
|
|
120
|
+
*/
|
|
121
|
+
listDict: IDictResponse[];
|
|
122
|
+
/**
|
|
123
|
+
* 资金性质
|
|
124
|
+
*/
|
|
125
|
+
listZJXZ: IDictResponse[];
|
|
110
126
|
}
|
|
111
127
|
|
|
112
128
|
export class TZbhdMainResponse implements IZbhdMainResponse {
|
|
@@ -195,7 +211,11 @@ export class TZbhdMainResponse implements IZbhdMainResponse {
|
|
|
195
211
|
decMoney: number = 0;
|
|
196
212
|
gamsName: string = "";
|
|
197
213
|
ysdwName: string = "";
|
|
214
|
+
dictName: string = "";
|
|
215
|
+
withPara: string = "";
|
|
216
|
+
listDict: IDictResponse[] = [];
|
|
198
217
|
listGAMS: IGamsK0kmResponse[] = [];
|
|
199
218
|
listYSDW: IUnitResponse[] = [];
|
|
200
219
|
listYSBM: IDeptResponse[] = [];
|
|
220
|
+
listZJXZ: IDictResponse[] = [];
|
|
201
221
|
}
|