forked from Siyy/RoadFlow
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathWorkFlowComment.cs
More file actions
41 lines (35 loc) · 962 Bytes
/
WorkFlowComment.cs
File metadata and controls
41 lines (35 loc) · 962 Bytes
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
using System;
using System.ComponentModel;
using System.ComponentModel.DataAnnotations;
namespace Data.Model
{
[Serializable]
public class WorkFlowComment
{
/// <summary>
/// ID
/// </summary>
[DisplayName("ID")]
public Guid ID { get; set; }
/// <summary>
/// MemberID
/// </summary>
[DisplayName("MemberID")]
public string MemberID { get; set; }
/// <summary>
/// Comment
/// </summary>
[DisplayName("Comment")]
public string Comment { get; set; }
/// <summary>
/// 类型 0管理员添加 1用户添加
/// </summary>
[DisplayName("类型 0管理员添加 1用户添加")]
public int Type { get; set; }
/// <summary>
/// Sort
/// </summary>
[DisplayName("Sort")]
public int Sort { get; set; }
}
}