YD_SmartSports.Api/VOL.Model/Norm/Request/ArticlePageListParam.cs

21 lines
484 B
C#
Raw Normal View History

2025-06-06 16:55:14 +08:00
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
{
/// <summary>
/// 公众号文章查询参数
/// </summary>
public class ArticlePageListParam : PageDto
{
/// <summary>
/// 文章标题
/// </summary>
[Display(Name = "文章标题")]
public string Title { get; set; }
}
}