using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace WCS.Application.Service.WcsTaskMonitor.Dto { public class WcsTaskMonitorOutput2 { public long Id { get; set; } /// /// 任务号 /// public string? TaskNo { get; set; } /// /// 交互位置 /// public string? PlcName { get; set; } /// /// 交互信息 /// public string? InteractiveMsg { get; set; } /// /// 创建时间 /// public DateTime? CreateTime { get; set; } } }