You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.
using System ;
using System.Collections.Generic ;
using System.Linq ;
using System.Text ;
using System.Threading.Tasks ;
namespace Myshipping.Application
{
/// <summary>
/// 用户任务统计展示
/// </summary>
public class TaskUserStatItem
{
/// <summary>
/// 级别分层( 1-异常/个人/公共 2-待处理/已完成/已取消/已挂起 3-按照任务类型展示)
/// </summary>
public int Level { get ; set ; }
/// <summary>
/// 排序值
/// </summary>
public int SortNo { get ; set ; }
/// <summary>
/// 展示代码
/// </summary>
public string Key { get ; set ; }
/// <summary>
/// 展示名称
/// </summary>
public string Name { get ; set ; }
/// <summary>
/// 记录条数
/// </summary>
public int Total { get ; set ; }
/// <summary>
/// 执行KEY
/// </summary>
public string ActionKey { get ; set ; }
}
}