using AutoMapper; using DllEapEntity.OFILM; using System; using System.Collections.Generic; using System.ComponentModel; using System.Text; namespace DllEapEntity.Dtos.Export { /// /// 机台上线维护导出 /// [AutoMap(typeof(MachineInfo))] public class MachineRecipeExportDto { [Description("设备ID")] public string MacCode { get; set; } [Description("机台编号")] public string MacNumber { get; set; } [Description("设备类型")] public string MacModelCode { get; set; } [Description("工序")] public string PCode { get; set; } [Description("IP地址")] public string IpAddress { get; set; } [Description("MAC地址")] public string MacAddress { get; set; } [Description("实际IP")] public string RealIp { get; set; } [Description("园区")] public string Factory { get; set; } [Description("厂房")] public string Plant { get; set; } [Description("楼层车间")] public string Floor { get; set; } [Description("线体")] public string Line { get; set; } [Description("AP服务器")] public string AppServerCode { get; set; } [Description("客户")] public string Customer { get; set; } [Description("项目")] public string Project { get; set; } [Description("机种")] public string Recipe { get; set; } [Description("小程序版本")] public string AppletV { get; set; } [Description("小程序状态")] public string AppletSName { get; set; } [Description("连接状态")] public string StatusName { get; set; } [Description("维护时间")] public DateTime ModTime { get; set; } [Description("维护人")] public string ModName { get; set; } } }