Map.cs
1.63 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("map")]
public partial class Map : SysEntity
{
public Map()
{
}
/// <summary>
/// 流程名称
/// </summary>
[Column("name")]
public string Name { get; set; }
/// <summary>
/// 宽度
/// </summary>
[Column("width")]
public int? Width { get; set; }
/// <summary>
/// 高度
/// </summary>
[Column("height")]
public int? Height { get; set; }
/// <summary>
/// 流程内容
/// </summary>
[Column("mapcontent")]
public string MapContent { get; set; }
/// <summary>
/// 流程内容备份
/// </summary>
[Column("mapcontentbkp")]
public string MapContentBkp { get; set; }
/// <summary>
/// 备份时间
/// </summary>
[Column("bkptime")]
public DateTime? BkpTime { get; set; }
/// <summary>
/// 还原时间
/// </summary>
[Column("restoretime")]
public DateTime? RestoreTime { get; set; }
/// <summary>
/// 默认地图
/// </summary>
[Column("isdefault")]
public int? IsDefault { get; set; }
/// <summary>
/// 备注
/// </summary>
[Column("description")]
public string Description { get; set; }
/// <summary>
/// 空地图
/// </summary>
[Column("emptymap")]
public bool? Emptymap { get; set; }
}
}