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

31 lines
1.2 KiB

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