@ningboyz/types 1.3.97 → 1.3.98
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
|
@@ -89,6 +89,21 @@ export interface IHznjNotiBillResponse {
|
|
|
89
89
|
fromNotiMemo: string;
|
|
90
90
|
cpbzText: string;
|
|
91
91
|
zbyqText: string;
|
|
92
|
+
|
|
93
|
+
coverURL: string;
|
|
94
|
+
touchURL: string;
|
|
95
|
+
unitText: string;
|
|
96
|
+
sourceDW: string;
|
|
97
|
+
|
|
98
|
+
lastDate: number;
|
|
99
|
+
lastTime: number;
|
|
100
|
+
flowStat: number;
|
|
101
|
+
didFirst: number;
|
|
102
|
+
lastMemo: string;
|
|
103
|
+
userName: string;
|
|
104
|
+
userGUID: string;
|
|
105
|
+
flowMain: number;
|
|
106
|
+
flowNode: number;
|
|
92
107
|
}
|
|
93
108
|
|
|
94
109
|
export class THznjNotiBillResponse implements IHznjNotiBillResponse {
|
|
@@ -162,6 +177,21 @@ export class THznjNotiBillResponse implements IHznjNotiBillResponse {
|
|
|
162
177
|
cpbzText: string = "";
|
|
163
178
|
zbyqText: string = "";
|
|
164
179
|
|
|
180
|
+
coverURL: string = "";
|
|
181
|
+
touchURL: string = "";
|
|
182
|
+
unitText: string = "";
|
|
183
|
+
sourceDW: string = "";
|
|
184
|
+
|
|
185
|
+
lastDate: number = 0;
|
|
186
|
+
lastTime: number = 0;
|
|
187
|
+
flowStat: number = 0;
|
|
188
|
+
didFirst: number = 0;
|
|
189
|
+
lastMemo: string = "";
|
|
190
|
+
userName: string = "";
|
|
191
|
+
userGUID: string = "";
|
|
192
|
+
flowMain: number = 0;
|
|
193
|
+
flowNode: number = 0;
|
|
194
|
+
|
|
165
195
|
constructor(data: Partial<IHznjNotiBillResponse> = {}) {
|
|
166
196
|
if (data) {
|
|
167
197
|
_.merge(this, _.pick(data, Object.keys(this)));
|
|
@@ -42,6 +42,7 @@ export interface IHznjXmjjItemResponse {
|
|
|
42
42
|
* 单位
|
|
43
43
|
* */
|
|
44
44
|
jldwText: string; //虚拟字段
|
|
45
|
+
xmjjStat: number;
|
|
45
46
|
}
|
|
46
47
|
|
|
47
48
|
export class THznjXmjjItemResponse implements IHznjXmjjItemResponse {
|
|
@@ -74,6 +75,7 @@ export class THznjXmjjItemResponse implements IHznjXmjjItemResponse {
|
|
|
74
75
|
jldwText: string = "";
|
|
75
76
|
/**组 */
|
|
76
77
|
groupTxt: string = "";
|
|
78
|
+
xmjjStat: number = 0;
|
|
77
79
|
|
|
78
80
|
constructor(data: Partial<IHznjXmjjItemResponse> = {}) {
|
|
79
81
|
if (data) {
|