108 lines
2.9 KiB
C#
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

using MiniExcelLibs.Attributes;
namespace ZR.ServiceCore.Model
{
[SugarTable("sys_oper_log", "操作日志表")]
[Tenant("0")]
public class SysOperLog
{
/// <summary>
/// 操作id
/// </summary>
[SugarColumn(IsPrimaryKey = true, IsIdentity = true)]
public long OperId { get; set; }
/// <summary>
/// 操作模块
/// </summary>
public string Title { get; set; }
/// <summary>
/// 业务类型0其它 1新增 2修改 3删除 4=授权,5=导出,6=导入,7=强退,8=生成代码,9=清空数据)
/// </summary>
[SugarColumn(DefaultValue = "0")]
public int BusinessType { get; set; }
/// <summary>
/// 业务类型数组
/// </summary>
[SugarColumn(IsIgnore = true)]
[ExcelIgnore]
public int[] BusinessTypes { get; set; }
/// <summary>
/// 请求方法
/// </summary>
public string Method { get; set; }
/// <summary>
/// 请求方式
/// </summary>
public string RequestMethod { get; set; }
/// <summary>
/// 操作类别0其它 1后台用户 2手机端用户
/// </summary>
//@Excel(name = "操作类别", readConverterExp = "0=其它,1=后台用户,2=手机端用户")
[SugarColumn(DefaultValue = "0")]
public int OperatorType { get; set; }
/// <summary>
/// 操作人员
/// </summary>
public string OperName { get; set; }
/// <summary>
/// 请求url
/// </summary>
public string OperUrl { get; set; }
/// <summary>
/// 操作地址
/// </summary>
public string OperIp { get; set; }
/// <summary>
/// 操作地点
/// </summary>
public string OperLocation { get; set; }
/// <summary>
/// 请求参数
/// </summary>
[SugarColumn(Length = 4000)]
public string OperParam { get; set; }
/// <summary>
/// 返回参数
/// </summary>
[SugarColumn(ColumnDataType = StaticConfig.CodeFirst_BigString)]
public string JsonResult { get; set; }
/// <summary>
/// 操作状态0正常 1异常
/// </summary>
[SugarColumn(DefaultValue = "0")]
public int Status { get; set; }
/// <summary>
/// 错误消息
/// </summary>
public string ErrorMsg { get; set; }
/// <summary>
/// 错误堆栈信息
/// </summary>
public string StackTrace { get; set; }
/// <summary>
/// 操作时间
/// </summary>
public DateTime? OperTime { get; set; }
/// <summary>
/// 操作用时
/// </summary>
public long Elapsed { get; set; }
public string DeptName { get; set; }
}
}