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