using Znyc.Admin.Commons.Dtos;
using Znyc.Admin.Security.Entitys;
namespace Znyc.Admin.Security.Dtos
{
///
/// 日志搜索条件
///
public class SearchDbLogsModel : SearchInputDto
{
///
/// 添加开始时间
///
public string CreatedTime1 { get; set; }
///
/// 添加结束时间
///
public string CreatedTime2 { get; set; }
///
/// 来源平台
///
public long PlatformType { get; set; }
}
}