WcsDeviceAddress.cs
1.58 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
62
63
64
65
66
67
using System;
using System.ComponentModel.DataAnnotations.Schema;
namespace WebRepository
{
/// <summary>
///
/// </summary>
[Table("wcs_Device_Address")]
public partial class WcsDeviceAddress : IdEntity
{
public WcsDeviceAddress()
{
}
/// <summary>
/// 设备编号
/// </summary>
[Column("Code")]
public string Code { get; set; }
/// <summary>
/// 设备包含的成员
/// </summary>
[Column("Member")]
public string Member { get; set; }
/// <summary>
/// 设备类型
/// </summary>
[Column("Type")]
public string Type { get; set; }
/// <summary>
/// DB块
/// </summary>
[Column("Db")]
public string Db { get; set; }
/// <summary>
/// 地址
/// </summary>
[Column("Address")]
public int? Address { get; set; }
/// <summary>
/// 地址小数位
/// </summary>
[Column("Address_decimal")]
public int? AddressDecimal { get; set; }
/// <summary>
/// 地址数据类型
/// </summary>
[Column("AddressType")]
public string AddressType { get; set; }
/// <summary>
/// 地址的属性
/// </summary>
[Column("Name")]
public string Name { get; set; }
/// <summary>
/// 备注
/// </summary>
[Column("Note")]
public string Note { get; set; }
/// <summary>
/// 值
/// </summary>
[Column("value")]
public string Value { get; set; }
}
}