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

29 lines
1.1 KiB

3 years ago
  1. using System;
  2. namespace NFine.Domain.Entity.SystemManage
  3. {
  4. public class UserLogOnEntity
  5. {
  6. public string F_Id { get; set; }
  7. public string F_UserId { get; set; }
  8. public string F_UserPassword { get; set; }
  9. public string F_UserSecretkey { get; set; }
  10. public DateTime? F_AllowStartTime { get; set; }
  11. public DateTime? F_AllowEndTime { get; set; }
  12. public DateTime? F_LockStartDate { get; set; }
  13. public DateTime? F_LockEndDate { get; set; }
  14. public DateTime? F_FirstVisitTime { get; set; }
  15. public DateTime? F_PreviousVisitTime { get; set; }
  16. public DateTime? F_LastVisitTime { get; set; }
  17. public DateTime? F_ChangePasswordDate { get; set; }
  18. public bool? F_MultiUserLogin { get; set; }
  19. public int? F_LogOnCount { get; set; }
  20. public bool? F_UserOnLine { get; set; }
  21. public string F_Question { get; set; }
  22. public string F_AnswerQuestion { get; set; }
  23. public bool? F_CheckIPAddress { get; set; }
  24. public string F_Language { get; set; }
  25. public string F_Theme { get; set; }
  26. }
  27. }