liuying
2025-09-24 16edbbe772e24eb71f6519558576d513e3cf2746
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 KnifeToolUsageAnalysisDto
    {
        /// <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; }
        
    }
}