baotian
2024-06-04 b959135a1139fb66646523d92e5bd20c5910f283
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
43
44
45
46
47
48
49
50
51
52
using iWare.Wms.Core.Util.LowCode.Dto;
using System;
 
namespace iWare.Wms.Application
{
    /// <summary>
    /// 刀具基本信息输出参数
    /// </summary>
    public class KnifeToolBaseInfoDto
    {
        /// <summary>
        /// 刀具编号
        /// </summary>
        public string KnifeToolID { get; set; }
        
        /// <summary>
        /// 型号
        /// </summary>
        public string KnifeToolModel { get; set; }
        
        /// <summary>
        /// 刀沿数
        /// </summary>
        public int KnifeEdgeNumber { get; set; }
        
        /// <summary>
        /// 刀具寿命
        /// </summary>
        public int KnifeToolLife { get; set; }
        
        /// <summary>
        /// 刀身长度
        /// </summary>
        public int KnifeLength { get; set; }
        
        /// <summary>
        /// 适配设备;适配设备编号
        /// </summary>
        public string EquipmentID { get; set; }
        
        /// <summary>
        /// 
        /// </summary>
        public string Remarks { get; set; }
        
        /// <summary>
        /// Id主键
        /// </summary>
        public long Id { get; set; }
        
    }
}