using System; using System.Collections.Generic; using System.Text; namespace DllEapEntity.OFILM { public class MachineInfo : MacRecipeDto { /// /// 机台名称 /// public string MacName { get; set; } /// /// 机台厂家 /// public int SupplierId { get; set; } public string SupplierCode { get; set; } public string MacNumber { get; set; } /// /// 机型ID /// public int MacModelId { get; set; } public string LocDir { get; set; } public int DeviceID { get; set; } public int FPort { get; set; } public int CallPMode { get; set; } public string Remark { get; set; } /// /// 厂房 /// public string Plant { get; set; } /// /// 客户 /// public string Customer { get; set; } /// /// 项目 /// public string Project { get; set; } /// /// 机种 /// public string Recipe { get; set; } /// /// 机型 /// public string MacModelCode { get; set; } /// /// 维护人 /// public string ModName { get; set; } /// /// 维护时间 /// public DateTime? ModTime { get; set; } public string AppServerCode { get; set; } public string AppServerName { get; set; } public string AppServerIp { get; set; } } public class ImportDto { public IEnumerable MacInfoes { get; set; } } }