schangxiang@126.com
2024-09-06 2a19504209e763a7c0e957e4ee265dd419486ef1
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
34
35
36
37
38
39
40
41
42
using iWare.Wms.Core.Util.LowCode.Dto;
using System;
 
namespace iWare.Wms.Application
{
    /// <summary>
    /// 设备刀具实时监控信息输出参数
    /// </summary>
    public class KnifeToolEquipmentMonitorDto
    {
        /// <summary>
        /// 设备编号
        /// </summary>
        public string EquipmentID { get; set; }
        
        /// <summary>
        /// 工序编号
        /// </summary>
        public string WorkingProcedure { get; set; }
        
        /// <summary>
        /// 备注1
        /// </summary>
        public string Remarks1 { get; set; }
        
        /// <summary>
        /// 备注2
        /// </summary>
        public string Remarks2 { get; set; }
        
        /// <summary>
        /// 备注3
        /// </summary>
        public string Remarks3 { get; set; }
        
        /// <summary>
        /// Id主键
        /// </summary>
        public long Id { get; set; }
        
    }
}