Node.cs
1.17 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
using System;
using System.ComponentModel.DataAnnotations;
using System.ComponentModel.DataAnnotations.Schema;
namespace WebRepository
{
/// <summary>
/// 地图节点信息
/// </summary>
public partial class Node
{
public Node()
{
}
/// <summary>
/// 地图名称
/// </summary>
public string Name { get; set; }
/// <summary>
/// X坐标
/// </summary>
public int? Left { get; set; }
/// <summary>
/// Y坐标
/// </summary>
public int? Top { get; set; }
/// <summary>
/// 节点类型
/// </summary>
public string Type { get; set; }
/// <summary>
/// 节点类型
/// </summary>
public string Color { get; set; }
/// <summary>
/// Id
/// </summary>
public string Id { get; set; }
/// <summary>
/// 宽度
/// </summary>
public int? Width { get; set; }
/// <summary>
/// 高度
/// </summary>
public int? Height { get; set; }
/// <summary>
/// 节点信息
/// </summary>
public SetInfo SetInfo { get; set; }
}
}