1234567891011121314151617181920212223242526272829303132333435363738 |
- using AutoMapper;
- using System;
- using System.Collections.Generic;
- using System.ComponentModel;
- using System.Text;
- namespace DllEapEntity.Dtos.Export
- {
- /// <summary>
- /// 机台导出实体
- /// </summary>
- [AutoMap(typeof(Machine))]
- public class MachineExportDto
- {
- /// <summary>
- /// 厂家
- /// </summary>
- [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; }
- }
- }
|