chengsc
2025-04-14 d2588d8d1305171e7716055b23a6b5706e9cc04b
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
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; }
        /// <summary>
        /// 任务号
        /// </summary>
        public string? TaskNo { get; set; }
 
        /// <summary>
        /// 交互位置
        /// </summary>
        public string? PlcName { get; set; }
 
        /// <summary>
        /// 交互信息
        /// </summary>
        public string? InteractiveMsg { get; set; }
 
        /// <summary>
        /// 创建时间
        /// </summary>
        public DateTime? CreateTime { get; set; }
 
    }
}