//
namespace SafeCampus.System;
///
/// 操作日志表
///
[SugarTable("sys_log_operate_{year}{month}{day}", TableDescription = "操作日志表")]
[Tenant(SqlSugarConst.DB_DEFAULT)]
public class SysLogOperate : SysLogVisit
{
///
/// 具体消息
///
[SugarColumn(ColumnName = "ExeMessage", ColumnDescription = "具体消息", ColumnDataType = StaticConfig.CodeFirst_BigString, IsNullable = true)]
public string ExeMessage { get; set; }
///
/// 类名称
///
[SugarColumn(ColumnName = "ClassName", ColumnDescription = "类名称", Length = 200)]
public string ClassName { get; set; }
///
/// 方法名称
///
[SugarColumn(ColumnName = "MethodName", ColumnDescription = "方法名称", Length = 200)]
public string MethodName { get; set; }
///
/// 请求方式
///
[SugarColumn(ColumnName = "ReqMethod", ColumnDescription = "请求方式", Length = 200, IsNullable = true)]
public string ReqMethod { get; set; }
///
/// 请求地址
///
[SugarColumn(ColumnName = "ReqUrl", ColumnDescription = "请求地址", ColumnDataType = StaticConfig.CodeFirst_BigString)]
public string ReqUrl { get; set; }
///
/// 请求参数
///
[SugarColumn(ColumnName = "ParamJson", ColumnDescription = "请求参数", ColumnDataType = StaticConfig.CodeFirst_BigString, IsNullable = true)]
public string ParamJson { get; set; }
///
/// 返回结果
///
[SugarColumn(ColumnName = "ResultJson", ColumnDescription = "返回结果", ColumnDataType = StaticConfig.CodeFirst_BigString, IsNullable = true)]
public string ResultJson { get; set; }
}