添加项目文件。

This commit is contained in:
jl
2023-01-13 15:30:20 +08:00
parent 40ed216831
commit bf208bde56
834 changed files with 470902 additions and 0 deletions

View File

@ -0,0 +1,71 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Epost.Model
{
public class ListResultModel<T>
{
#region
/// <summary>
/// 总记录数
/// </summary>
public int? TotalCount { get; set; }
#endregion
#region
/// <summary>
/// 页大小
/// </summary>
public int? PageSize { get; set; }
#endregion
#region
/// <summary>
/// 页索引
/// </summary>
public int? PageIndex { get; set; }
#endregion
#region
/// <summary>
/// 排序字段
/// </summary>
public string SortField { get; set; }
#endregion
#region
/// <summary>
/// 排序方向
/// </summary>
public string SortDir { get; set; }
#endregion
#region
/// <summary>
/// 扩展属性
/// </summary>
public object ExtAttr { get; set; }
public object ExtId { get; set; }
public object IsConnect { get; set; }
public object IsWifiConnect { get; set; }
public object IsDbConnect { get; set; }
#endregion
/// <summary>
/// 列表数据
/// </summary>
public T List { get; set; }
public T RoleList { get; set; }
public T BlockList { get; set; }
public T AreaList { get; set; }
}
}