SGGL_SGY/SGGL/Model/APIItem/ToDoItem.cs

100 lines
1.8 KiB
C#
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace Model
{
public class ToDoItem
{
/// <summary>
/// 主键ID
/// </summary>
public string DataId
{
get;
set;
}
/// <summary>
/// 菜单ID
/// </summary>
public string MenuId
{
get;
set;
}
/// <summary>
/// 菜单名称
/// </summary>
public string MenuName
{
get;
set;
}
/// <summary>
/// 内容
/// </summary>
public string Content
{
get;
set;
}
/// <summary>
/// 办理人ID
/// </summary>
public string UserId
{
get;
set;
}
/// <summary>
/// 办理人姓名
/// </summary>
public string UserName
{
get;
set;
}
/// <summary>
/// 时间
/// </summary>
public DateTime? DataTime
{
get;
set;
}
/// <summary>
/// 时间字符串
/// </summary>
public string DataTimeStr
{
get;
set;
}
/// <summary>
/// 路径
/// </summary>
public string UrlStr
{
get;
set;
}
/// <summary>
/// PC端路径
/// </summary>
public string PCUrl
{
get;
set;
}
/// <summary>
/// IsInsert 1:插入2更新
/// </summary>
public string IsInsert
{
get;
set;
}
}
}