@ningboyz/types 1.2.175 → 1.2.176
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
|
@@ -32,6 +32,11 @@ export interface IHznkFydwBillResponse {
|
|
|
32
32
|
dContact: string;
|
|
33
33
|
unitText: string;
|
|
34
34
|
sourceDW: string;
|
|
35
|
+
|
|
36
|
+
fromWhoBuild: number;
|
|
37
|
+
fromUserIndx: number;
|
|
38
|
+
fromHznkIndx: number;
|
|
39
|
+
fromHznkUUID: string;
|
|
35
40
|
}
|
|
36
41
|
|
|
37
42
|
export class THznkFydwBillResponse implements IHznkFydwBillResponse {
|
|
@@ -68,4 +73,9 @@ export class THznkFydwBillResponse implements IHznkFydwBillResponse {
|
|
|
68
73
|
dContact: string = "";
|
|
69
74
|
unitText: string = "";
|
|
70
75
|
sourceDW: string = "";
|
|
76
|
+
|
|
77
|
+
fromWhoBuild: number = 0;
|
|
78
|
+
fromUserIndx: number = 0;
|
|
79
|
+
fromHznkIndx: number = 0;
|
|
80
|
+
fromHznkUUID: string = "";
|
|
71
81
|
}
|
|
@@ -25,6 +25,8 @@ export interface IHznkXmysItemResponse {
|
|
|
25
25
|
ratioVal: number;
|
|
26
26
|
/**分值 */
|
|
27
27
|
totalVal: number;
|
|
28
|
+
dictMain: number;
|
|
29
|
+
dictName: string;
|
|
28
30
|
}
|
|
29
31
|
|
|
30
32
|
export class THznkXmysItemResponse implements IHznkXmysItemResponse {
|
|
@@ -50,4 +52,6 @@ export class THznkXmysItemResponse implements IHznkXmysItemResponse {
|
|
|
50
52
|
userName: string = "";
|
|
51
53
|
ratioVal: number = 0;
|
|
52
54
|
totalVal: number = 0;
|
|
55
|
+
dictMain: number = 0;
|
|
56
|
+
dictName: string = "";
|
|
53
57
|
}
|