TConfigTim.cs
1007 Bytes
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
using System;
using System.ComponentModel.DataAnnotations.Schema;
namespace WebRepository
{
/// <summary>
///
/// </summary>
[Table("t_config_tim")]
public partial class TConfigTim : IdEntity
{
public TConfigTim()
{
}
/// <summary>
///
/// </summary>
[Column("AreaType")]
public int? AreaType { get; set; }
/// <summary>
///
/// </summary>
[Column("AntiCollision")]
public int? IntTimcode { get; set; }
/// <summary>
///
/// </summary>
[Column("Barcode")]
public string StrBarcode { get; set; }
/// <summary>
///
/// </summary>
[Column("IntX")]
public int? IntX { get; set; }
/// <summary>
///
/// </summary>
[Column("IntY")]
public int? IntY { get; set; }
/// <summary>
///
/// </summary>
[Column("OriAgv")]
public int? OriAgv { get; set; }
}
}