using Microsoft.EntityFrameworkCore;
|
using OfficeOpenXml.FormulaParsing.Excel.Functions.Math;
|
using System;
|
using System.Collections.Generic;
|
using System.ComponentModel.DataAnnotations;
|
using System.ComponentModel.DataAnnotations.Schema;
|
using System.Linq;
|
using System.Text;
|
using System.Threading.Tasks;
|
|
namespace iWare.Wms.Core
|
{
|
[Table("SystemLog")]
|
[Comment("系统日志表")]
|
public class SystemLog : DEntityBase
|
{
|
/// <summary>
|
/// 日志时间
|
/// </summary>
|
[Comment("日志时间")]
|
public DateTime LogTime { get; set; }
|
|
/// <summary>
|
/// 席位ID
|
/// </summary>
|
[Comment("线程代码")]
|
[MaxLength(32)]
|
public string LogSource { get; set; }
|
|
/// <summary>
|
/// 用户ID
|
/// </summary>
|
[Comment("用户ID")]
|
[MaxLength(32)]
|
public string UserID { get; set; }
|
|
/// <summary>
|
/// 日志内容
|
/// </summary>
|
[Comment("日志内容")]
|
[MaxLength(8000)]
|
public string LogContent { get; set; }
|
|
/// <summary>
|
/// 描述信息
|
/// </summary>
|
[Comment("描述信息")]
|
[MaxLength(32)]
|
public string Description { get; set; }
|
|
|
}
|
}
|