using System; using System.Collections.Generic; using System.ComponentModel.DataAnnotations; using ARW.Model.Models.Business.Custom.HistorySearchs; namespace ARW.Model.Dto.Business.Custom.HistorySearchs { /// /// 历史搜索输入对象 /// /// @author lwh /// @date 2023-10-09 /// public class HistorySearchDto { public int HistorySearchId { get; set; } public long HistorySearchGuid { get; set; } [Required(ErrorMessage = "搜索内容不能为空")] public string HistorySearchContent { get; set; } } /// /// 历史搜索查询对象 /// /// @author lwh /// @date 2023-10-09 /// public class HistorySearchQueryDto : PagerInfo { public string ids { get; set; } } }