纽威
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.

21 lines
763 B

3 years ago
  1. using System;
  2. namespace NFine.Domain.Entity.SystemSecurity
  3. {
  4. public class LogEntity : IEntity<LogEntity>, ICreationAudited
  5. {
  6. public string F_Id { get; set; }
  7. public DateTime? F_Date { get; set; }
  8. public string F_Account { get; set; }
  9. public string F_NickName { get; set; }
  10. public string F_Type { get; set; }
  11. public string F_IPAddress { get; set; }
  12. public string F_IPAddressName { get; set; }
  13. public string F_ModuleId { get; set; }
  14. public string F_ModuleName { get; set; }
  15. public bool? F_Result { get; set; }
  16. public string F_Description { get; set; }
  17. public DateTime? F_CreatorTime { get; set; }
  18. public string F_CreatorUserId { get; set; }
  19. }
  20. }