MapRegion.cs
1.7 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;
using System.ComponentModel.DataAnnotations.Schema;
namespace WebRepository
{
/// <summary>
/// 地图元素附加信息
/// </summary>
[Table("t_base_map_region")]
public partial class MapRegion : SysEntity
{
public MapRegion()
{
}
/// <summary>
/// 所属地图
/// </summary>
public string AreaName { get; set; }
/// <summary>
/// Id
/// </summary>
[Column("RegionId")]
public string RegionId { get; set; }
/// <summary>
/// 名称
/// </summary>
[Column("RegionName")]
public string RegionName { get; set; }
/// <summary>
/// 管制点位
/// </summary>
[Column("RegionPoint1")]
public string RegionPoint1 { get; set; }
/// <summary>
/// 管制点位
/// </summary>
[Column("RegionPoint2")]
public string RegionPoint2 { get; set; }
/// <summary>
/// 管制点位
/// </summary>
[Column("RegionPoint3")]
public string RegionPoint3 { get; set; }
/// <summary>
/// id
/// </summary>
[Column("RegionPoint1_Id")]
public string RegionPoint1_Id { get; set; }
/// <summary>
/// id
/// </summary>
[Column("RegionPoint2_Id")]
public string RegionPoint2_Id { get; set; }
/// <summary>
/// id
/// </summary>
[Column("RegionPoint3_Id")]
public string RegionPoint3_Id { get; set; }
/// <summary>
/// index
/// </summary>
[Column("LAY_TABLE_INDEX")]
public int? LAY_TABLE_INDEX { get; set; }
}
}