@ningboyz/types 1.3.43 → 1.3.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
|
@@ -79,6 +79,10 @@ export interface IHznkBaseResponse {
|
|
|
79
79
|
dContact: string;
|
|
80
80
|
/** 申请总金额 */
|
|
81
81
|
totalVal: number;
|
|
82
|
+
/**项目类型(名称) */
|
|
83
|
+
typeText: string;
|
|
84
|
+
/**项目层级(名称) */
|
|
85
|
+
modeText: string;
|
|
82
86
|
|
|
83
87
|
coverURL: string;
|
|
84
88
|
touchURL: string;
|
|
@@ -93,6 +97,11 @@ export interface IHznkBaseResponse {
|
|
|
93
97
|
userName: string;
|
|
94
98
|
userGUID: string;
|
|
95
99
|
|
|
100
|
+
/**项目类型(名称) */
|
|
101
|
+
typeText: string;
|
|
102
|
+
/**项目层级(名称) */
|
|
103
|
+
modeText: string;
|
|
104
|
+
|
|
96
105
|
/**附件 */
|
|
97
106
|
listPath: TCore.IPathResponse[];
|
|
98
107
|
listNBYH: TCore.IUserLiteResponse[];
|
|
@@ -160,6 +169,8 @@ export class THznkBaseResponse implements IHznkBaseResponse {
|
|
|
160
169
|
wContact: string = "";
|
|
161
170
|
dContact: string = "";
|
|
162
171
|
totalVal: number = 0;
|
|
172
|
+
typeText: string = "";
|
|
173
|
+
modeText: string = "";
|
|
163
174
|
|
|
164
175
|
coverURL: string = "";
|
|
165
176
|
touchURL: string = "";
|
|
@@ -173,6 +184,8 @@ export class THznkBaseResponse implements IHznkBaseResponse {
|
|
|
173
184
|
lastMemo: string = "";
|
|
174
185
|
userName: string = "";
|
|
175
186
|
userGUID: string = "";
|
|
187
|
+
typeText: string = "";
|
|
188
|
+
modeText: string = "";
|
|
176
189
|
|
|
177
190
|
listPath: TCore.IPathResponse[] = [];
|
|
178
191
|
listNBYH: TCore.IUserLiteResponse[] = [];
|
|
@@ -23,6 +23,15 @@ export interface IHznkFydwItemResponse {
|
|
|
23
23
|
totalVal: number;
|
|
24
24
|
dictMain: number;
|
|
25
25
|
dictName: string;
|
|
26
|
+
|
|
27
|
+
/**到位经费单据编号 */
|
|
28
|
+
baseCode: string;
|
|
29
|
+
/**经办人 */
|
|
30
|
+
sqyhText: string;
|
|
31
|
+
/**所属部门 */
|
|
32
|
+
sqbmText: string;
|
|
33
|
+
/**制单日期 */
|
|
34
|
+
fromCreateAt: number;
|
|
26
35
|
}
|
|
27
36
|
|
|
28
37
|
export class THznkFydwItemResponse implements IHznkFydwItemResponse {
|
|
@@ -50,4 +59,13 @@ export class THznkFydwItemResponse implements IHznkFydwItemResponse {
|
|
|
50
59
|
totalVal: number = 0;
|
|
51
60
|
dictMain: number = 0;
|
|
52
61
|
dictName: string = "";
|
|
62
|
+
|
|
63
|
+
/**到位经费单据编号 */
|
|
64
|
+
baseCode: string = "";
|
|
65
|
+
/**经办人 */
|
|
66
|
+
sqyhText: string = "";
|
|
67
|
+
/**所属部门 */
|
|
68
|
+
sqbmText: string = "";
|
|
69
|
+
/**制单日期 */
|
|
70
|
+
fromCreateAt: number = 0;
|
|
53
71
|
}
|