forked from Siyy/RoadFlow
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathAppLibrary.cs
More file actions
77 lines (65 loc) · 2.06 KB
/
AppLibrary.cs
File metadata and controls
77 lines (65 loc) · 2.06 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
68
69
70
71
72
73
74
75
76
77
using System;
using System.ComponentModel;
using System.ComponentModel.DataAnnotations;
namespace Data.Model
{
[Serializable]
public class AppLibrary
{
/// <summary>
/// ID
/// </summary>
[DisplayName("ID")]
public Guid ID { get; set; }
/// <summary>
/// 标题
/// </summary>
[DisplayName("标题")]
public string Title { get; set; }
/// <summary>
/// 地址
/// </summary>
[DisplayName("地址")]
public string Address { get; set; }
/// <summary>
/// 分类ID
/// </summary>
[DisplayName("分类ID")]
public Guid Type { get; set; }
/// <summary>
/// 打开方式{0-默认,1-弹出模态窗口,2-弹出窗口,3-新窗口}
/// </summary>
[DisplayName("打开方式{0-默认,1-弹出模态窗口,2-弹出窗口,3-新窗口}")]
public int OpenMode { get; set; }
/// <summary>
/// 弹出窗口宽度
/// </summary>
[DisplayName("弹出窗口宽度")]
public int? Width { get; set; }
/// <summary>
/// 弹出窗口高度
/// </summary>
[DisplayName("弹出窗口高度")]
public int? Height { get; set; }
/// <summary>
/// 其它参数
/// </summary>
[DisplayName("其它参数")]
public string Params { get; set; }
/// <summary>
/// 管理人员
/// </summary>
[DisplayName("管理人员")]
public string Manager { get; set; }
/// <summary>
/// 备注
/// </summary>
[DisplayName("备注")]
public string Note { get; set; }
/// <summary>
/// 唯一标识符,流程应用时为流程ID,表单应用时对应表单ID
/// </summary>
[DisplayName("唯一标识符,流程应用时为流程ID,表单应用时对应表单ID")]
public string Code { get; set; }
}
}