using AutoMapper; using System; using System.Collections.Generic; using System.ComponentModel; using System.Text; namespace DllEapEntity.Dtos.Export { /// /// 机台导出实体 /// [AutoMap(typeof(Machine))] public class MachineExportDto { /// /// 厂家 /// [Description("厂商")] public string SupplierFCode { get; set; } [Description("代码")] public string FCode { get; set; } [Description("名称")] public string FName { get; set; } [Description("位置")] public string RegionName { get; set; } [Description("IP地址")] public string IPAddress { get; set; } [Description("端口")] public int FPort { get; set; } [Description("MAC地址")] public string MacAddress { get; set; } [Description("调程模式")] public string CallPModeFName { get; set; } [Description("软件版本")] public string FVersion { get; set; } } }