You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
using System;
namespace NFine.Domain.Entity.SystemSecurity { public class LogEntity : IEntity<LogEntity>, ICreationAudited { public string F_Id { get; set; } public DateTime? F_Date { get; set; } public string F_Account { get; set; } public string F_NickName { get; set; } public string F_Type { get; set; } public string F_IPAddress { get; set; } public string F_IPAddressName { get; set; } public string F_ModuleId { get; set; } public string F_ModuleName { get; set; } public bool? F_Result { get; set; } public string F_Description { get; set; } public DateTime? F_CreatorTime { get; set; } public string F_CreatorUserId { get; set; } } }
|