천호석
2022-12-02 7a23f140e04f37ce4c1660ff7a13e1d98c079401
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
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
 
namespace SHARP_CLAS_UI
{
    public class Equipment_Info
    {
        public string Device_ID { get; set; }
        public string Process_Number { get; set; }
        public string Line_Name { get; set; }
        public string Program_Name { get; set; }
        public string Program_Version { get; set; }
        public string Module_Model_ID { get; set; }
        public string Purpose_Code { get; set; }
        public string Mass_Production_Code { get; set; }
        public string Prototype_Name { get; set; }
        public string Person_In_Charge_Code { get; set; }
        public int Team { get; set; }
 
        public Equipment_Info()
        {
            Device_ID = string.Empty;
            Process_Number = string.Empty;
            Line_Name = string.Empty;
            Program_Name = string.Empty;
            Program_Version = string.Empty;
            Module_Model_ID = string.Empty;
            Purpose_Code = string.Empty;
            Mass_Production_Code = string.Empty;
            Prototype_Name = string.Empty;
            Person_In_Charge_Code = string.Empty;
            Team = 0;
        }
 
        public Equipment_Info Clone()
        {
            Equipment_Info info = new Equipment_Info();
 
            info.Device_ID = this.Device_ID;
            info.Process_Number = this.Process_Number;
            info.Line_Name = this.Line_Name;
            info.Program_Name = this.Program_Name;
            info.Program_Version = this.Program_Version;
            info.Module_Model_ID = this.Module_Model_ID;
            info.Purpose_Code = this.Purpose_Code;
            info.Mass_Production_Code = this.Mass_Production_Code;
            info.Prototype_Name = this.Prototype_Name;
            info.Person_In_Charge_Code = this.Person_In_Charge_Code;
            info.Team = this.Team;
            return info;
        }
    }
}