using Newtonsoft.Json; namespace Vo.Admin { /// /// 详情 /// public class GetSysLogQueryVo { /// /// 编号 /// public long id { get; set; } /// /// 日志类型 /// public string logType { get; set; } /// /// 日志标题 /// public string title { get; set; } /// /// 服务ID /// public string serviceId { get; set; } /// /// 创建人 /// public string createBy { get; set; } /// /// 修改人 /// public string updateBy { get; set; } /// /// 创建时间 /// public DateTime? createTime { get; set; } /// /// 更新时间 /// public DateTime? updateTime { get; set; } /// /// 远程地址 /// public string remoteAddr { get; set; } /// /// 用户代理 /// public string userAgent { get; set; } /// /// 请求URI /// public string requestUri { get; set; } /// /// 请求方法 /// public string method { get; set; } /// /// 请求参数 /// public string paramss { get; set; } /// /// 执行时间 /// public long time { get; set; } /// /// 删除标志 /// public string delFlag { get; set; } /// /// 异常信息 /// public string exception { get; set; } } }