@ningboyz/types 1.7.111 → 1.7.113
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 +1 -1
- package/src/conf/IConfig.ts +3 -1
- package/src/cron/ICronMainResponse.ts +20 -0
package/package.json
CHANGED
package/src/conf/IConfig.ts
CHANGED
|
@@ -75,6 +75,16 @@ export interface ICronMainResponse {
|
|
|
75
75
|
workStat: number;
|
|
76
76
|
workerID: number;
|
|
77
77
|
todoMemo: string;
|
|
78
|
+
wbField0: string;
|
|
79
|
+
wbField1: string;
|
|
80
|
+
wbField2: string;
|
|
81
|
+
wbField3: string;
|
|
82
|
+
wbField4: string;
|
|
83
|
+
wbField5: string;
|
|
84
|
+
wbField6: string;
|
|
85
|
+
wbField7: string;
|
|
86
|
+
wbField8: string;
|
|
87
|
+
wbField9: string;
|
|
78
88
|
}
|
|
79
89
|
|
|
80
90
|
export class TCronMainResponse implements ICronMainResponse {
|
|
@@ -150,6 +160,16 @@ export class TCronMainResponse implements ICronMainResponse {
|
|
|
150
160
|
workStat: number = 0;
|
|
151
161
|
workerID: number = 0;
|
|
152
162
|
todoMemo: string = "";
|
|
163
|
+
wbField0: string = "";
|
|
164
|
+
wbField1: string = "";
|
|
165
|
+
wbField2: string = "";
|
|
166
|
+
wbField3: string = "";
|
|
167
|
+
wbField4: string = "";
|
|
168
|
+
wbField5: string = "";
|
|
169
|
+
wbField6: string = "";
|
|
170
|
+
wbField7: string = "";
|
|
171
|
+
wbField8: string = "";
|
|
172
|
+
wbField9: string = "";
|
|
153
173
|
|
|
154
174
|
constructor(card: any = {}) {
|
|
155
175
|
if (card) {
|