using AutoMapper; using System; using System.Collections.Generic; using System.ComponentModel; using System.Text; namespace DllEapEntity.Dtos { [AutoMap(typeof(OfTrackMst))] public class ExportOfTrackMst { [Description ("StripID")] public string StripId { get; set; } [Description("机台编号")] public string MacCode { get; set; } [Description("制程代码")] public string ProcessCode { get; set; } [Description ("进站操作员")] public string ReCode { get; set; } [Description("进站时间")] public DateTime TrackInTime { get; set; } [Description ("出站操作员")] public string ModCode { get; set; } [Description("出站时间")] public DateTime TrackOutTime { get; set; } [Description ("备注")] public string CurrentState { get; set; } } }