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

22 lines
877 B

3 years ago
  1. using System;
  2. namespace NFine.Domain.Entity.SystemSecurity
  3. {
  4. public class FilterIPEntity : IEntity<FilterIPEntity>, ICreationAudited, IDeleteAudited, IModificationAudited
  5. {
  6. public string F_Id { get; set; }
  7. public bool? F_Type { get; set; }
  8. public string F_StartIP { get; set; }
  9. public string F_EndIP { get; set; }
  10. public int? F_SortCode { get; set; }
  11. public bool? F_DeleteMark { get; set; }
  12. public bool? F_EnabledMark { get; set; }
  13. public string F_Description { get; set; }
  14. public DateTime? F_CreatorTime { get; set; }
  15. public string F_CreatorUserId { get; set; }
  16. public DateTime? F_LastModifyTime { get; set; }
  17. public string F_LastModifyUserId { get; set; }
  18. public DateTime? F_DeleteTime { get; set; }
  19. public string F_DeleteUserId { get; set; }
  20. }
  21. }