using Znyc.Recruitment.Admin.Commons.Dtos;
using Znyc.Recruitment.Admin.Security.Entitys;
namespace Znyc.Recruitment.Admin.Security.Dtos
{
///
/// 操作日志搜索条件
///
public class SearchOperationLogsModel : SearchInputDto
{
///
/// 添加开始时间
///
public string StartTime { get; set; }
///
/// 添加结束时间
///
public string EndTime { get; set; }
}
}