KxsUser.cs 1.4 KB

12345678910111213141516171819202122232425262728293031323334353637
  1. using System;
  2. using System.Collections.Generic;
  3. namespace MySystem.KxsUserModels
  4. {
  5. public partial class KxsUser
  6. {
  7. public int Id { get; set; }
  8. public DateTime? ToMerchantMakerTime { get; set; }
  9. public string Remark { get; set; }
  10. public int IsMinWarehouse { get; set; }
  11. public int IsMerchantMaker { get; set; }
  12. public int Status { get; set; }
  13. public int Version { get; set; }
  14. public int RealStatus { get; set; }
  15. public string HandPwd { get; set; }
  16. public string PayPwd { get; set; }
  17. public int UserLevel { get; set; }
  18. public string Salt { get; set; }
  19. public string Avatar { get; set; }
  20. public string UserCode { get; set; }
  21. public string PidPath { get; set; }
  22. public int Pid { get; set; }
  23. public string Address { get; set; }
  24. public string Phone { get; set; }
  25. public string Password { get; set; }
  26. public string Username { get; set; }
  27. public int HiddenLevel { get; set; }
  28. public int DelFlag { get; set; }
  29. public DateTime? UpdateTime { get; set; }
  30. public DateTime? CreateTime { get; set; }
  31. public decimal ThisMonthTrade { get; set; }
  32. public string UpdateBy { get; set; }
  33. public string CreateBy { get; set; }
  34. public DateTime? LogoutTime { get; set; }
  35. }
  36. }