@ningboyz/types 1.2.116 → 1.2.118
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
|
@@ -110,6 +110,21 @@ export interface IHznkDataResponse {
|
|
|
110
110
|
zzdwText: string;
|
|
111
111
|
/**帮扶次数(封顶) */
|
|
112
112
|
hznkSize: number;
|
|
113
|
+
/**担任职务 */
|
|
114
|
+
usrTitle: string;
|
|
115
|
+
|
|
116
|
+
/**字典1 */
|
|
117
|
+
fromDic1: number;
|
|
118
|
+
/**字典2 */
|
|
119
|
+
fromDic2: number;
|
|
120
|
+
/**字典3 */
|
|
121
|
+
fromDic3: number;
|
|
122
|
+
/**字典1名称 */
|
|
123
|
+
fromDic1Text: string;
|
|
124
|
+
/**字典2名称 */
|
|
125
|
+
fromDic2Text: string;
|
|
126
|
+
/**字典3名称 */
|
|
127
|
+
fromDic3Text: string;
|
|
113
128
|
|
|
114
129
|
coverURL: string;
|
|
115
130
|
touchURL: string;
|
|
@@ -202,6 +217,13 @@ export class THznkDataResponse implements IHznkDataResponse {
|
|
|
202
217
|
medalTypText: string = "";
|
|
203
218
|
medalLvlText: string = "";
|
|
204
219
|
|
|
220
|
+
fromDic1: number = 0;
|
|
221
|
+
fromDic2: number = 0;
|
|
222
|
+
fromDic3: number = 0;
|
|
223
|
+
fromDic1Text: string = "";
|
|
224
|
+
fromDic2Text: string = "";
|
|
225
|
+
fromDic3Text: string = "";
|
|
226
|
+
|
|
205
227
|
coverURL: string = "";
|
|
206
228
|
touchURL: string = "";
|
|
207
229
|
unitText: string = "";
|
|
@@ -221,6 +243,7 @@ export class THznkDataResponse implements IHznkDataResponse {
|
|
|
221
243
|
nbyhText: string = "";
|
|
222
244
|
zzdwText: string = "";
|
|
223
245
|
hznkSize: number = 0;
|
|
246
|
+
usrTitle: string = "";
|
|
224
247
|
|
|
225
248
|
listPath: IPathResponse[] = [];
|
|
226
249
|
listEach: IHznkDataEachResponse[] = [];
|
|
@@ -260,4 +283,4 @@ export class THznkDataResponse implements IHznkDataResponse {
|
|
|
260
283
|
result.flowStat = hznk.hznkStat;
|
|
261
284
|
return result;
|
|
262
285
|
}
|
|
263
|
-
}
|
|
286
|
+
}
|