천호석
2022-06-27 5471442aaee7ee0f8e6f4cac472fc4cb15f6f26c
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
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
 
namespace SHARP_CLAS_UI
{
    public class Panel_Count_Info
    {
        #region Property
        public DateTime Day_Time { get; set; }
        public int Day_ULD_OK_Count { get; set; }
        public int Day_ULD_NG_Count { get; set; }
 
        public DateTime Minute_Time { get; set; }
        public int Minute_ULD_OK_Count { get; set; }
        public int Minute_ULD_NG_Count { get; set; }
 
        public int CleaningCount { get; set; }
        #endregion
 
        #region Construct
        public Panel_Count_Info()
        {
            Day_Time = DateTime.Now;
            Day_ULD_OK_Count = 0;
            Day_ULD_NG_Count = 0;
 
            Minute_Time = DateTime.Now;
            Minute_ULD_OK_Count = 0;
            Minute_ULD_NG_Count = 0;
 
            CleaningCount = 0;
        }
        #endregion
 
        #region Function
        public Panel_Count_Info Clone()
        {
            Panel_Count_Info info = new Panel_Count_Info();
 
            info.Day_Time = this.Day_Time;
            info.Day_ULD_OK_Count = this.Day_ULD_OK_Count;
            info.Day_ULD_NG_Count = this.Day_ULD_NG_Count;
            info.Minute_Time = this.Minute_Time;
            info.Minute_ULD_OK_Count = this.Minute_ULD_OK_Count;
            info.Minute_ULD_NG_Count = this.Minute_ULD_NG_Count;
            info.CleaningCount = this.CleaningCount;
 
            return info;
        }
        #endregion
    }
}