TBasePathPoint.cs
1.39 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
using System;
using System.ComponentModel.DataAnnotations.Schema;
namespace WebRepository
{
/// <summary>
///
/// </summary>
[Table("t_base_pathpoint")]
public partial class TBasePathPoint
{
public TBasePathPoint()
{
}
/// <summary>
///
/// </summary>
[Column("ID")]
public int? Id { get; set; }
/// <summary>
/// 区域
/// </summary>
[Column("AreaType")]
public string AreaType { get; set; }
/// <summary>
///
/// </summary>
[Column("SonTaskNo")]
public int? IntSonTaskNo { get; set; }
/// <summary>
///
/// </summary>
[Column("Barcode")]
public string StrBarcode { get; set; }
/// <summary>
///
/// </summary>
[Column("SerialNo")]
public int? IntSerialNo { get; set; }
/// <summary>
///
/// </summary>
[Column("PathDirection")]
public int? PathDirection { get; set; }
/// <summary>
///
/// </summary>
[Column("PathPointType")]
public int? PathPointType { get; set; }
/// <summary>
///
/// </summary>
[Column("IsCorner")]
public bool? IsCorner { get; set; }
/// <summary>
///
/// </summary>
[Column("PathTime")]
public int? PathTime { get; set; }
}
}