using SqlSugar;
using System;
using System.Collections;
using System.Collections.Generic;
using System.ComponentModel;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using XF.Domain.Repository;
namespace Hotline.Settings
{
[Description("操作日志")]
public class SystemLog : FullStateEntity
{
///
/// 操作名称
///
public string Name { get; set; }
///
/// 执行状态(0失败 1成功)
///
public int? Status { get; set; }
///
/// 备注
///
public string? Remark { get; set; }
///
/// 接口地址
///
public string? ExecuteUrl { get; set; }
///
/// ip地址
///
public string? IpUrl { get; set; }
///
/// 请求参数
///
[SugarColumn(ColumnDataType = "json", IsJson = true)]
public object? ExecuteParam { get; set; }
///
/// 请求结果
///
[SugarColumn(ColumnDataType = "json", IsJson = true)]
public object? ExecuteResult { get; set; }
}
}