宁虹看板
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.

26 lines
889 B

2 years ago
  1. using System;
  2. namespace NFine.Code
  3. {
  4. public class OperatorModel
  5. {
  6. public string UserId { get; set; }
  7. public string UserCode { get; set; }
  8. public string UserName { get; set; }
  9. public string UserPwd { get; set; }
  10. public string CompanyId { get; set; }
  11. public string DepartmentId { get; set; }
  12. public string RoleId { get; set; }
  13. public string RoleEnCode { get; set; }
  14. public string RoleFullName { get; set; }
  15. public string LoginIPAddress { get; set; }
  16. public string LoginIPAddressName { get; set; }
  17. public string LoginToken { get; set; }
  18. public DateTime LoginTime { get; set; }
  19. public bool IsSystem { get; set; }
  20. public string Location { get; set; }//2019-12-09 sch
  21. public string VenCode { get; set; }
  22. public string Email { get; set; }
  23. }
  24. }