using System.Collections.Generic;
namespace VideoAnalysisCore.Common.Dto
{
public class PageResult<T>
/// <summary>
/// 数据
/// </summary>
public List<T> Data { get; set; }
/// 总条数
public int Total { get; set; }
}