NewArea.cs
1.18 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 NewArea
{
public NewArea()
{
}
/// <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 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 bool? alt { get; set; }
/// <summary>
/// 节点信息
/// </summary>
public newSetInfo setInfo { get; set; }
}
}