using System; using System.Collections.Generic; using System.ComponentModel.DataAnnotations; using ARW.Model.Models.Business.Advertisement.Notices; namespace ARW.Model.Dto.Api.Advertisement.Notices { /// /// 公告查询对象Api /// /// @author lwh /// @date 2023-10-09 /// public class NoticeQueryDtoApi : PagerInfo { public string NoticeTitle { get; set; } } }