y_ys79
2024-01-05 e5840972b6b17ec03bfc1069a9cacfe0cef189c6
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
package com.qianwen.mdc.domain;
 
import java.io.Serializable;
 
import com.baomidou.mybatisplus.annotation.IdType;
import com.baomidou.mybatisplus.annotation.TableId;
 
public class Monitorlog implements Serializable, Comparable<Monitorlog> {
    @TableId
    private Long monitorid;
 
    private Integer monitortime;
 
    private Integer monitortype;
 
    private Integer monitorport;
 
    private String monitortag;
 
    private String monitorprogram;
 
    private String monitorjob;
 
    private String monitoroperator;
 
    private String monitorcount;
 
    private String monitorbytes;
 
    private String monitorlines;
 
    private String monitorerrors;
 
    private String monitortimesec;
 
    private String monitorfilesize;
 
    private Integer monitorvar9;
 
    private Integer monitorvar10;
 
    private Integer monitorvar11;
 
    private Integer monitorvar12;
 
    private Integer monitorvar13;
 
    private Integer monitorvar14;
 
    private Integer monitorvar15;
 
    private Integer monitorvar16;
 
    private String monitortext;
 
    private String monitorfile;
 
    private String monitorerrinfo;
 
    private String monitorerrdesc;
 
    private String monitorvar1;
 
    private String monitorvar2;
 
    private String monitorvar3;
 
    private String monitorvar4;
 
    private String monitorvar5;
 
    private String monitorvar6;
 
    private String monitorvar7;
 
    private String monitorvar8;
 
    private static final long serialVersionUID = 1L;
 
    /**
     * @return monitorid
     */
    public Long getMonitorid() {
        return monitorid;
    }
 
    /**
     * @param monitorid
     */
    public void setMonitorid(Long monitorid) {
        this.monitorid = monitorid;
    }
 
    /**
     * @return monitortime
     */
    public Integer getMonitortime() {
        return monitortime;
    }
 
    /**
     * @param monitortime
     */
    public void setMonitortime(Integer monitortime) {
        this.monitortime = monitortime;
    }
 
    /**
     * @return monitortype
     */
    public Integer getMonitortype() {
        return monitortype;
    }
 
    /**
     * @param monitortype
     */
    public void setMonitortype(Integer monitortype) {
        this.monitortype = monitortype;
    }
 
    /**
     * @return monitorport
     */
    public Integer getMonitorport() {
        return monitorport;
    }
 
    /**
     * @param monitorport
     */
    public void setMonitorport(Integer monitorport) {
        this.monitorport = monitorport;
    }
 
    /**
     * @return monitortag
     */
    public String getMonitortag() {
        return monitortag;
    }
 
    /**
     * @param monitortag
     */
    public void setMonitortag(String monitortag) {
        this.monitortag = monitortag;
    }
 
    /**
     * @return monitorprogram
     */
    public String getMonitorprogram() {
        return monitorprogram;
    }
 
    /**
     * @param monitorprogram
     */
    public void setMonitorprogram(String monitorprogram) {
        this.monitorprogram = monitorprogram;
    }
 
    /**
     * @return monitorjob
     */
    public String getMonitorjob() {
        return monitorjob;
    }
 
    /**
     * @param monitorjob
     */
    public void setMonitorjob(String monitorjob) {
        this.monitorjob = monitorjob;
    }
 
    /**
     * @return monitoroperator
     */
    public String getMonitoroperator() {
        return monitoroperator;
    }
 
    /**
     * @param monitoroperator
     */
    public void setMonitoroperator(String monitoroperator) {
        this.monitoroperator = monitoroperator;
    }
 
    /**
     * @return monitorcount
     */
    public String getMonitorcount() {
        return monitorcount;
    }
 
    /**
     * @param monitorcount
     */
    public void setMonitorcount(String monitorcount) {
        this.monitorcount = monitorcount;
    }
 
    /**
     * @return monitorbytes
     */
    public String getMonitorbytes() {
        return monitorbytes;
    }
 
    /**
     * @param monitorbytes
     */
    public void setMonitorbytes(String monitorbytes) {
        this.monitorbytes = monitorbytes;
    }
 
    /**
     * @return monitorlines
     */
    public String getMonitorlines() {
        return monitorlines;
    }
 
    /**
     * @param monitorlines
     */
    public void setMonitorlines(String monitorlines) {
        this.monitorlines = monitorlines;
    }
 
    /**
     * @return monitorerrors
     */
    public String getMonitorerrors() {
        return monitorerrors;
    }
 
    /**
     * @param monitorerrors
     */
    public void setMonitorerrors(String monitorerrors) {
        this.monitorerrors = monitorerrors;
    }
 
    /**
     * @return monitortimesec
     */
    public String getMonitortimesec() {
        return monitortimesec;
    }
 
    /**
     * @param monitortimesec
     */
    public void setMonitortimesec(String monitortimesec) {
        this.monitortimesec = monitortimesec;
    }
 
    /**
     * @return monitorfilesize
     */
    public String getMonitorfilesize() {
        return monitorfilesize;
    }
 
    /**
     * @param monitorfilesize
     */
    public void setMonitorfilesize(String monitorfilesize) {
        this.monitorfilesize = monitorfilesize;
    }
 
    /**
     * @return monitorvar9
     */
    public Integer getMonitorvar9() {
        return monitorvar9;
    }
 
    /**
     * @param monitorvar9
     */
    public void setMonitorvar9(Integer monitorvar9) {
        this.monitorvar9 = monitorvar9;
    }
 
    /**
     * @return monitorvar10
     */
    public Integer getMonitorvar10() {
        return monitorvar10;
    }
 
    /**
     * @param monitorvar10
     */
    public void setMonitorvar10(Integer monitorvar10) {
        this.monitorvar10 = monitorvar10;
    }
 
    /**
     * @return monitorvar11
     */
    public Integer getMonitorvar11() {
        return monitorvar11;
    }
 
    /**
     * @param monitorvar11
     */
    public void setMonitorvar11(Integer monitorvar11) {
        this.monitorvar11 = monitorvar11;
    }
 
    /**
     * @return monitorvar12
     */
    public Integer getMonitorvar12() {
        return monitorvar12;
    }
 
    /**
     * @param monitorvar12
     */
    public void setMonitorvar12(Integer monitorvar12) {
        this.monitorvar12 = monitorvar12;
    }
 
    /**
     * @return monitorvar13
     */
    public Integer getMonitorvar13() {
        return monitorvar13;
    }
 
    /**
     * @param monitorvar13
     */
    public void setMonitorvar13(Integer monitorvar13) {
        this.monitorvar13 = monitorvar13;
    }
 
    /**
     * @return monitorvar14
     */
    public Integer getMonitorvar14() {
        return monitorvar14;
    }
 
    /**
     * @param monitorvar14
     */
    public void setMonitorvar14(Integer monitorvar14) {
        this.monitorvar14 = monitorvar14;
    }
 
    /**
     * @return monitorvar15
     */
    public Integer getMonitorvar15() {
        return monitorvar15;
    }
 
    /**
     * @param monitorvar15
     */
    public void setMonitorvar15(Integer monitorvar15) {
        this.monitorvar15 = monitorvar15;
    }
 
    /**
     * @return monitorvar16
     */
    public Integer getMonitorvar16() {
        return monitorvar16;
    }
 
    /**
     * @param monitorvar16
     */
    public void setMonitorvar16(Integer monitorvar16) {
        this.monitorvar16 = monitorvar16;
    }
 
    /**
     * @return monitortext
     */
    public String getMonitortext() {
        return monitortext;
    }
 
    /**
     * @param monitortext
     */
    public void setMonitortext(String monitortext) {
        this.monitortext = monitortext;
    }
 
    /**
     * @return monitorfile
     */
    public String getMonitorfile() {
        return monitorfile;
    }
 
    /**
     * @param monitorfile
     */
    public void setMonitorfile(String monitorfile) {
        this.monitorfile = monitorfile;
    }
 
    /**
     * @return monitorerrinfo
     */
    public String getMonitorerrinfo() {
        return monitorerrinfo;
    }
 
    /**
     * @param monitorerrinfo
     */
    public void setMonitorerrinfo(String monitorerrinfo) {
        this.monitorerrinfo = monitorerrinfo;
    }
 
    /**
     * @return monitorerrdesc
     */
    public String getMonitorerrdesc() {
        return monitorerrdesc;
    }
 
    /**
     * @param monitorerrdesc
     */
    public void setMonitorerrdesc(String monitorerrdesc) {
        this.monitorerrdesc = monitorerrdesc;
    }
 
    /**
     * @return monitorvar1
     */
    public String getMonitorvar1() {
        return monitorvar1;
    }
 
    /**
     * @param monitorvar1
     */
    public void setMonitorvar1(String monitorvar1) {
        this.monitorvar1 = monitorvar1;
    }
 
    /**
     * @return monitorvar2
     */
    public String getMonitorvar2() {
        return monitorvar2;
    }
 
    /**
     * @param monitorvar2
     */
    public void setMonitorvar2(String monitorvar2) {
        this.monitorvar2 = monitorvar2;
    }
 
    /**
     * @return monitorvar3
     */
    public String getMonitorvar3() {
        return monitorvar3;
    }
 
    /**
     * @param monitorvar3
     */
    public void setMonitorvar3(String monitorvar3) {
        this.monitorvar3 = monitorvar3;
    }
 
    /**
     * @return monitorvar4
     */
    public String getMonitorvar4() {
        return monitorvar4;
    }
 
    /**
     * @param monitorvar4
     */
    public void setMonitorvar4(String monitorvar4) {
        this.monitorvar4 = monitorvar4;
    }
 
    /**
     * @return monitorvar5
     */
    public String getMonitorvar5() {
        return monitorvar5;
    }
 
    /**
     * @param monitorvar5
     */
    public void setMonitorvar5(String monitorvar5) {
        this.monitorvar5 = monitorvar5;
    }
 
    /**
     * @return monitorvar6
     */
    public String getMonitorvar6() {
        return monitorvar6;
    }
 
    /**
     * @param monitorvar6
     */
    public void setMonitorvar6(String monitorvar6) {
        this.monitorvar6 = monitorvar6;
    }
 
    /**
     * @return monitorvar7
     */
    public String getMonitorvar7() {
        return monitorvar7;
    }
 
    /**
     * @param monitorvar7
     */
    public void setMonitorvar7(String monitorvar7) {
        this.monitorvar7 = monitorvar7;
    }
 
    /**
     * @return monitorvar8
     */
    public String getMonitorvar8() {
        return monitorvar8;
    }
 
    /**
     * @param monitorvar8
     */
    public void setMonitorvar8(String monitorvar8) {
        this.monitorvar8 = monitorvar8;
    }
 
    @Override
    public String toString() {
        StringBuilder sb = new StringBuilder();
        sb.append(getClass().getSimpleName());
        sb.append(" [");
        sb.append("Hash = ").append(hashCode());
        sb.append(", monitorid=").append(monitorid);
        sb.append(", monitortime=").append(monitortime);
        sb.append(", monitortype=").append(monitortype);
        sb.append(", monitorport=").append(monitorport);
        sb.append(", monitortag=").append(monitortag);
        sb.append(", monitorprogram=").append(monitorprogram);
        sb.append(", monitorjob=").append(monitorjob);
        sb.append(", monitoroperator=").append(monitoroperator);
        sb.append(", monitorcount=").append(monitorcount);
        sb.append(", monitorbytes=").append(monitorbytes);
        sb.append(", monitorlines=").append(monitorlines);
        sb.append(", monitorerrors=").append(monitorerrors);
        sb.append(", monitortimesec=").append(monitortimesec);
        sb.append(", monitorfilesize=").append(monitorfilesize);
        sb.append(", monitorvar9=").append(monitorvar9);
        sb.append(", monitorvar10=").append(monitorvar10);
        sb.append(", monitorvar11=").append(monitorvar11);
        sb.append(", monitorvar12=").append(monitorvar12);
        sb.append(", monitorvar13=").append(monitorvar13);
        sb.append(", monitorvar14=").append(monitorvar14);
        sb.append(", monitorvar15=").append(monitorvar15);
        sb.append(", monitorvar16=").append(monitorvar16);
        sb.append(", monitortext=").append(monitortext);
        sb.append(", monitorfile=").append(monitorfile);
        sb.append(", monitorerrinfo=").append(monitorerrinfo);
        sb.append(", monitorerrdesc=").append(monitorerrdesc);
        sb.append(", monitorvar1=").append(monitorvar1);
        sb.append(", monitorvar2=").append(monitorvar2);
        sb.append(", monitorvar3=").append(monitorvar3);
        sb.append(", monitorvar4=").append(monitorvar4);
        sb.append(", monitorvar5=").append(monitorvar5);
        sb.append(", monitorvar6=").append(monitorvar6);
        sb.append(", monitorvar7=").append(monitorvar7);
        sb.append(", monitorvar8=").append(monitorvar8);
        sb.append("]");
        return sb.toString();
    }
 
    @Override
    public boolean equals(Object that) {
        if (this == that) {
            return true;
        }
        if (that == null) {
            return false;
        }
        if (getClass() != that.getClass()) {
            return false;
        }
        Monitorlog other = (Monitorlog) that;
        return (this.getMonitorid() == null ? other.getMonitorid() == null : this.getMonitorid().equals(other.getMonitorid()))
            && (this.getMonitortime() == null ? other.getMonitortime() == null : this.getMonitortime().equals(other.getMonitortime()))
            && (this.getMonitortype() == null ? other.getMonitortype() == null : this.getMonitortype().equals(other.getMonitortype()))
            && (this.getMonitorport() == null ? other.getMonitorport() == null : this.getMonitorport().equals(other.getMonitorport()))
            && (this.getMonitortag() == null ? other.getMonitortag() == null : this.getMonitortag().equals(other.getMonitortag()))
            && (this.getMonitorprogram() == null ? other.getMonitorprogram() == null : this.getMonitorprogram().equals(other.getMonitorprogram()))
            && (this.getMonitorjob() == null ? other.getMonitorjob() == null : this.getMonitorjob().equals(other.getMonitorjob()))
            && (this.getMonitoroperator() == null ? other.getMonitoroperator() == null : this.getMonitoroperator().equals(other.getMonitoroperator()))
            && (this.getMonitorcount() == null ? other.getMonitorcount() == null : this.getMonitorcount().equals(other.getMonitorcount()))
            && (this.getMonitorbytes() == null ? other.getMonitorbytes() == null : this.getMonitorbytes().equals(other.getMonitorbytes()))
            && (this.getMonitorlines() == null ? other.getMonitorlines() == null : this.getMonitorlines().equals(other.getMonitorlines()))
            && (this.getMonitorerrors() == null ? other.getMonitorerrors() == null : this.getMonitorerrors().equals(other.getMonitorerrors()))
            && (this.getMonitortimesec() == null ? other.getMonitortimesec() == null : this.getMonitortimesec().equals(other.getMonitortimesec()))
            && (this.getMonitorfilesize() == null ? other.getMonitorfilesize() == null : this.getMonitorfilesize().equals(other.getMonitorfilesize()))
            && (this.getMonitorvar9() == null ? other.getMonitorvar9() == null : this.getMonitorvar9().equals(other.getMonitorvar9()))
            && (this.getMonitorvar10() == null ? other.getMonitorvar10() == null : this.getMonitorvar10().equals(other.getMonitorvar10()))
            && (this.getMonitorvar11() == null ? other.getMonitorvar11() == null : this.getMonitorvar11().equals(other.getMonitorvar11()))
            && (this.getMonitorvar12() == null ? other.getMonitorvar12() == null : this.getMonitorvar12().equals(other.getMonitorvar12()))
            && (this.getMonitorvar13() == null ? other.getMonitorvar13() == null : this.getMonitorvar13().equals(other.getMonitorvar13()))
            && (this.getMonitorvar14() == null ? other.getMonitorvar14() == null : this.getMonitorvar14().equals(other.getMonitorvar14()))
            && (this.getMonitorvar15() == null ? other.getMonitorvar15() == null : this.getMonitorvar15().equals(other.getMonitorvar15()))
            && (this.getMonitorvar16() == null ? other.getMonitorvar16() == null : this.getMonitorvar16().equals(other.getMonitorvar16()))
            && (this.getMonitortext() == null ? other.getMonitortext() == null : this.getMonitortext().equals(other.getMonitortext()))
            && (this.getMonitorfile() == null ? other.getMonitorfile() == null : this.getMonitorfile().equals(other.getMonitorfile()))
            && (this.getMonitorerrinfo() == null ? other.getMonitorerrinfo() == null : this.getMonitorerrinfo().equals(other.getMonitorerrinfo()))
            && (this.getMonitorerrdesc() == null ? other.getMonitorerrdesc() == null : this.getMonitorerrdesc().equals(other.getMonitorerrdesc()))
            && (this.getMonitorvar1() == null ? other.getMonitorvar1() == null : this.getMonitorvar1().equals(other.getMonitorvar1()))
            && (this.getMonitorvar2() == null ? other.getMonitorvar2() == null : this.getMonitorvar2().equals(other.getMonitorvar2()))
            && (this.getMonitorvar3() == null ? other.getMonitorvar3() == null : this.getMonitorvar3().equals(other.getMonitorvar3()))
            && (this.getMonitorvar4() == null ? other.getMonitorvar4() == null : this.getMonitorvar4().equals(other.getMonitorvar4()))
            && (this.getMonitorvar5() == null ? other.getMonitorvar5() == null : this.getMonitorvar5().equals(other.getMonitorvar5()))
            && (this.getMonitorvar6() == null ? other.getMonitorvar6() == null : this.getMonitorvar6().equals(other.getMonitorvar6()))
            && (this.getMonitorvar7() == null ? other.getMonitorvar7() == null : this.getMonitorvar7().equals(other.getMonitorvar7()))
            && (this.getMonitorvar8() == null ? other.getMonitorvar8() == null : this.getMonitorvar8().equals(other.getMonitorvar8()));
    }
 
    @Override
    public int hashCode() {
        final int prime = 31;
        int result = 1;
        result = prime * result + ((getMonitorid() == null) ? 0 : getMonitorid().hashCode());
        result = prime * result + ((getMonitortime() == null) ? 0 : getMonitortime().hashCode());
        result = prime * result + ((getMonitortype() == null) ? 0 : getMonitortype().hashCode());
        result = prime * result + ((getMonitorport() == null) ? 0 : getMonitorport().hashCode());
        result = prime * result + ((getMonitortag() == null) ? 0 : getMonitortag().hashCode());
        result = prime * result + ((getMonitorprogram() == null) ? 0 : getMonitorprogram().hashCode());
        result = prime * result + ((getMonitorjob() == null) ? 0 : getMonitorjob().hashCode());
        result = prime * result + ((getMonitoroperator() == null) ? 0 : getMonitoroperator().hashCode());
        result = prime * result + ((getMonitorcount() == null) ? 0 : getMonitorcount().hashCode());
        result = prime * result + ((getMonitorbytes() == null) ? 0 : getMonitorbytes().hashCode());
        result = prime * result + ((getMonitorlines() == null) ? 0 : getMonitorlines().hashCode());
        result = prime * result + ((getMonitorerrors() == null) ? 0 : getMonitorerrors().hashCode());
        result = prime * result + ((getMonitortimesec() == null) ? 0 : getMonitortimesec().hashCode());
        result = prime * result + ((getMonitorfilesize() == null) ? 0 : getMonitorfilesize().hashCode());
        result = prime * result + ((getMonitorvar9() == null) ? 0 : getMonitorvar9().hashCode());
        result = prime * result + ((getMonitorvar10() == null) ? 0 : getMonitorvar10().hashCode());
        result = prime * result + ((getMonitorvar11() == null) ? 0 : getMonitorvar11().hashCode());
        result = prime * result + ((getMonitorvar12() == null) ? 0 : getMonitorvar12().hashCode());
        result = prime * result + ((getMonitorvar13() == null) ? 0 : getMonitorvar13().hashCode());
        result = prime * result + ((getMonitorvar14() == null) ? 0 : getMonitorvar14().hashCode());
        result = prime * result + ((getMonitorvar15() == null) ? 0 : getMonitorvar15().hashCode());
        result = prime * result + ((getMonitorvar16() == null) ? 0 : getMonitorvar16().hashCode());
        result = prime * result + ((getMonitortext() == null) ? 0 : getMonitortext().hashCode());
        result = prime * result + ((getMonitorfile() == null) ? 0 : getMonitorfile().hashCode());
        result = prime * result + ((getMonitorerrinfo() == null) ? 0 : getMonitorerrinfo().hashCode());
        result = prime * result + ((getMonitorerrdesc() == null) ? 0 : getMonitorerrdesc().hashCode());
        result = prime * result + ((getMonitorvar1() == null) ? 0 : getMonitorvar1().hashCode());
        result = prime * result + ((getMonitorvar2() == null) ? 0 : getMonitorvar2().hashCode());
        result = prime * result + ((getMonitorvar3() == null) ? 0 : getMonitorvar3().hashCode());
        result = prime * result + ((getMonitorvar4() == null) ? 0 : getMonitorvar4().hashCode());
        result = prime * result + ((getMonitorvar5() == null) ? 0 : getMonitorvar5().hashCode());
        result = prime * result + ((getMonitorvar6() == null) ? 0 : getMonitorvar6().hashCode());
        result = prime * result + ((getMonitorvar7() == null) ? 0 : getMonitorvar7().hashCode());
        result = prime * result + ((getMonitorvar8() == null) ? 0 : getMonitorvar8().hashCode());
        return result;
    }
 
    @Override
    public int compareTo(Monitorlog o) {
        return this.monitortime - o.monitortime;
    }
}