EquipmentProperty.cs
1.41 KB
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
using System.ComponentModel.DataAnnotations;
using System.ComponentModel.DataAnnotations.Schema;
using Microsoft.EntityFrameworkCore;
namespace HHECS.RobotTool.Model
{
[Comment("设备属性")]
public class EquipmentProperty
{
[Key]
[Comment("主键")]
public int Id { get; set; }
[Comment("设备Id")]
public int EquipmentId { get; set; }
public virtual Equipment Equipment { get; set; } = null!;
[Comment("属性编号")]
public string Code { get; set; } = null!;
[Comment("属性名称")]
public string Name { get; set; } = null!;
[Comment("节点地址")]
public string DataAddress { get; set; } = null!;
[Comment("数据类型")]
[Column(Order = 5, TypeName = "nvarchar(25)")]
public DataTypeConst DataType { get; set; }
[Comment("值")]
public string? Value { get; set; }
[Comment("备注")]
public string? Remark { get; set; }
[Comment("创建时间")]
public DateTime? CreateTime { get; set; }
[Comment("修改时间")]
public DateTime? UpdateTime { get; set; }
}
/// <summary>
/// 数据类型
/// </summary>
public enum DataTypeConst
{
Float,
Bool,
Byte,
Int16,
UInt16,
Int32,
UInt32,
Int64,
UInt64,
String,
}
}