XCode/XUnitTest.XCode/Code/EntityInterfaces/IUserLog.cs

72 lines
1.7 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 System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Runtime.Serialization;
using System.Web.Script.Serialization;
using System.Xml.Serialization;
namespace XCode.Membership666;
/// <summary>用户日志</summary>
public partial interface IUserLog
{
#region
/// <summary>编号</summary>
Int64 ID { get; set; }
/// <summary>数据时间。按月分表</summary>
DateTime DataTime { get; set; }
/// <summary>类别</summary>
String? Category { get; set; }
/// <summary>操作</summary>
String? Action { get; set; }
/// <summary>链接</summary>
Int32 LinkID { get; set; }
/// <summary>成功</summary>
Boolean Success { get; set; }
/// <summary>用户名</summary>
String? UserName { get; set; }
/// <summary>扩展1</summary>
Int32 Ex1 { get; set; }
/// <summary>扩展2</summary>
Int32 Ex2 { get; set; }
/// <summary>扩展3</summary>
Double Ex3 { get; set; }
/// <summary>扩展4</summary>
String? Ex4 { get; set; }
/// <summary>扩展5</summary>
String? Ex5 { get; set; }
/// <summary>扩展6</summary>
String? Ex6 { get; set; }
/// <summary>性能追踪。用于APM性能追踪定位还原该事件的调用链</summary>
String? TraceId { get; set; }
/// <summary>创建者</summary>
String? CreateUser { get; set; }
/// <summary>创建用户</summary>
Int32 CreateUserID { get; set; }
/// <summary>创建地址</summary>
String? CreateIP { get; set; }
/// <summary>时间</summary>
DateTime CreateTime { get; set; }
/// <summary>详细信息</summary>
String? Remark { get; set; }
#endregion
}