using System;
using System.Collections.Generic;
using System.ComponentModel.DataAnnotations;
using Volo.Abp.Application.Dtos;
using Win.Sfs.Shared.Filter;
namespace Win.Sfs.Shared.DtoBase
{
///
/// Request DTO base
///
[Serializable]
public abstract class RequestDtoBase : PagedAndSortedResultRequestDto
{
///
/// 筛选条件
///
[Display(Name = "筛选条件")]
public virtual List Filters { get; set; } = new List();
}
}