forked from Siyy/RoadFlow
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathWorkFlowData.cs
More file actions
47 lines (40 loc) · 1.05 KB
/
WorkFlowData.cs
File metadata and controls
47 lines (40 loc) · 1.05 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
using System;
using System.ComponentModel;
using System.ComponentModel.DataAnnotations;
namespace Data.Model
{
[Serializable]
public class WorkFlowData
{
/// <summary>
/// ID
/// </summary>
[DisplayName("ID")]
public Guid ID { get; set; }
/// <summary>
/// InstanceID
/// </summary>
[DisplayName("InstanceID")]
public Guid InstanceID { get; set; }
/// <summary>
/// 连接ID
/// </summary>
[DisplayName("连接ID")]
public Guid LinkID { get; set; }
/// <summary>
/// 表名
/// </summary>
[DisplayName("表名")]
public string TableName { get; set; }
/// <summary>
/// 字段名
/// </summary>
[DisplayName("字段名")]
public string FieldName { get; set; }
/// <summary>
/// 主键值
/// </summary>
[DisplayName("主键值")]
public string Value { get; set; }
}
}