using System; using System.Collections.Generic; using System.ComponentModel.DataAnnotations; using System.Linq; using System.Text; using System.Threading.Tasks; namespace VOL.Model.Norm.Request { /// /// 公众号文章查询参数 /// public class ArticlePageListParam : PageDto { /// /// 文章标题 /// [Display(Name = "文章标题")] public string Title { get; set; } } }