2
schangxiang@126.com
2024-06-20 90b264c675155d6fb921d256f2de48ad398845c6
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
77
78
79
80
using Microsoft.EntityFrameworkCore;
using System.ComponentModel.DataAnnotations;
using System.ComponentModel.DataAnnotations.Schema;
 
/*
 * @author : 您的名字
 * @date : 2024/6/9下午3:33:04
 * @desc : 设备维护记录
 */
namespace iWare.Wms.Core
{
    /// <summary>
    /// 设备维护记录
    /// </summary>
    [Table("equipmentbaseinfolog")]
    [Comment("设备维护记录")]
    public class Equipmentbaseinfolog : DEntityBase
    {
 
 
        /// <summary>
        /// 设备ID
        /// </summary>
        [Comment("设备ID")]
        [Required]
 
        public long EquipmentBaseInfoId { get; set; }
 
 
        /// <summary>
        /// 设备编号
        /// </summary>
        [Comment("设备编号")]
        [MaxLength(255)]
        public string EquipmentID { get; set; }
 
 
        /// <summary>
        /// 操作类型ID
        /// </summary>
        [Comment("操作类型ID")]
        [Required]
 
        public EquipmentbaseinfoOperatorTypeEnum OperatorType { get; set; }
 
 
        /// <summary>
        /// 操作类型
        /// </summary>
        [Comment("操作类型")]
        [Required]
        [MaxLength(255)]
        public string OperatorTypeName { get; set; }
 
 
        /// <summary>
        /// 操作内容
        /// </summary>
        [Comment("操作内容")]
        [MaxLength(255)]
        public string OperatorContent { get; set; }
 
 
        /// <summary>
        /// 备注
        /// </summary>
        [Comment("备注")]
        [MaxLength(255)]
        public string Remark { get; set; }
 
 
 
 
 
 
 
 
 
    }
}