You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
42 lines
935 B
42 lines
935 B
9 months ago
|
using System;
|
||
|
using System.ComponentModel;
|
||
|
using System.ComponentModel.DataAnnotations;
|
||
|
|
||
|
namespace RoadFlow.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("Comment2")]
|
||
|
public string Comment2 { get; set; }
|
||
|
|
||
|
/// <summary>
|
||
|
/// 类型 0管理员添加 1用户添加
|
||
|
/// </summary>
|
||
|
[DisplayName("类型 0管理员添加 1用户添加")]
|
||
|
public int Type { get; set; }
|
||
|
|
||
|
/// <summary>
|
||
|
/// Sort
|
||
|
/// </summary>
|
||
|
[DisplayName("Sort")]
|
||
|
public int Sort { get; set; }
|
||
|
|
||
|
}
|
||
|
}
|