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;
|
}
|
}
|
}
|