schangxiang@126.com
2024-08-28 39c09dede499f7ba23bcd26b17b2199a31bddccc
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
using Microsoft.EntityFrameworkCore;
using System;
using System.Collections.Generic;
using System.ComponentModel.DataAnnotations;
using System.ComponentModel.DataAnnotations.Schema;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
 
namespace iWare.Wms.Core
{
    [Table("KnifeToolBaseInfo")]
    [Comment("刀具基本信息")]
    public class KnifeToolBaseInfo : DEntityBase
    {
        /// <summary>
        /// 刀具编号
        /// </summary>
        [Comment("刀具编号")]
        [Required, MaxLength(32)]
        public string KnifeToolID { get; set; }
 
        /// <summary>
        /// 型号
        /// </summary>
        [Comment("型号")]
        [MaxLength(32)]
        public string KnifeToolModel { get; set; }
 
        /// <summary>
        /// 刀沿数
        /// </summary>
        [Comment("刀沿数")]
        public int KnifeEdgeNumber { get; set; }
        /// <summary>
        /// 刀具预警阈值
        /// </summary>
        [Comment("刀具预警阈值")]
        public int KnifeToolChangeAlertThreshold { get; set; }
 
        /// <summary>
        /// 刀具寿命
        /// </summary>
        [Comment("刀具寿命")]
        public int KnifeToolLife { get; set; }
 
        /// <summary>
        /// 刀身长度
        /// </summary>
        [Comment("刀身长度")]
        public int KnifeLength { get; set; }
 
        /// <summary>
        /// 适配设备;适配设备编号
        /// </summary>
        [Comment("适配设备;适配设备编号")]
        [MaxLength(32)]
        public string EquipmentID { get; set; }
 
        /// <summary>
        /// 备注
        /// </summary>
        [MaxLength(255)]
        public string Remarks { get; set; }
    }
}