using Cksoft.Unity; using System; using System.Collections.Generic; using System.Text; namespace DllEapEntity.Dtos { public class MacTProcess { [Identity] public int ID { get; set; } /// /// 机器编号 /// public string MacID { get; set; } public string PCode { get; set; } public string Remark { get; set; } public string reccode { get; set; } public DateTime? rectime { get; set; } public string modcode { get; set; } public DateTime? modtime { get; set; } [Ignore] public string MacCode { get; set; } [Ignore] public string MacName { get; set; } [Ignore] public string MacModel { get; set; } [Ignore] public string MacModelName { get; set; } [Ignore] public string ProcessName { get; set; } [Ignore] public string ProcessCode { get; set; } [Ignore] public string Factory { get; set; } [Ignore] public string Floor { get; set; } [Ignore] public string Line { get; set; } [Ignore] public string RegionName { get; set; } } }