liuying
2025-09-24 6efa5f6ca7536a37e3af3592bb42db63bcb8371d
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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
using iWare.Wms.Core.Util.LowCode.Dto;
using Microsoft.EntityFrameworkCore;
using System;
 
namespace iWare.Wms.Application
{
    /// <summary>
    /// 刀具基本信息输出参数
    /// </summary>
    public class KnifeToolBaseInfoOutput
    {
        /// <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 EquipmentName { get; set; }
 
        /// <summary>
        /// 刀具预警阈值
        /// </summary>
        public int KnifeToolChangeAlertThreshold { get; set; }
 
        /// <summary>
        /// 备注
        /// </summary>
        public string Remarks { get; set; }
 
        /// <summary>
        /// 创建时间
        /// </summary>
        public DateTimeOffset? CreatedTime { get; set; }
        
        /// <summary>
        /// Id主键
        /// </summary>
        public long Id { get; set; }
        /// <summary>
        /// 当前使用寿命
        /// </summary>
        public int? CurrentLife { get; set; }
        /// <summary>
        /// 刀具名称
        /// </summary>
        public string KnifeToolName { get; set; }
 
    }
}