using System;
using System.ComponentModel.DataAnnotations;
namespace Myshipping.Core.Service;
///
/// 操作日志列表
///
public class OpLogPageListDto
{
public long Id { get; set; }
///
/// 请求方式(GET POST PUT DELETE)
///
public string ReqMethod { get; set; }
///
/// 操作人名称
///
public string Name { get; set; }
///
/// 是否执行成功(Y-是,N-否)
///
public YesOrNot Success { get; set; }
///
/// ip
///
public string Ip { get; set; }
///
/// 请求地址
///
public string Url { get; set; }
///
/// 操作时间
///
public DateTime OpTime { get; set; }
///
/// 操作人账号
///
public string Account { get; set; }
}
///
/// 操作日志详情
///
public class OpLogDetailDto
{
public long Id { get; set; }
///
/// 浏览器
///
public string Browser { get; set; }
///
/// 操作系统
///
public string Os { get; set; }
///
/// 请求参数
///
public string Param { get; set; }
///
/// 返回结果
///
public string Result { get; set; }
}