using AutoMapper;
using System;
using Znyc.Cloudcar.Admin.Commons.Dtos;
using Znyc.Cloudcar.Admin.Security.Entitys;
namespace Znyc.Cloudcar.Admin.Security.Dtos
{
///
/// 输入对象模型
///
[AutoMap(typeof(OperationLogsEntity))]
[Serializable]
public class OperationLogsInPutDto : IInputDto
{
///
/// 操作类型
///
public string CRUD { get; set; }
///
/// 操作用户
///
public string UserName { get; set; }
///
/// 操作时间
///
public DateTime OperationTime { get; set; }
///
/// IP
///
public string IP { get; set; }
///
/// 主机
///
public string OS { get; set; }
///
/// 浏览器
///
public string Browser { get; set; }
///
/// 城市
///
public string City { get; set; }
///
/// 操作系统
///
public string UserAgent { get; set; }
///
/// 请求明细
///
public string RequertData { get; set; }
///
/// 请求url
///
public string RequestUrl { get; set; }
///
/// 主键
///
public long Id { get; set; }
}
}