Account.cs 3.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Text;
  4. namespace CoreEntity.Entity
  5. {
  6. [Serializable]
  7. public class Account
  8. {
  9. private int _id;
  10. private string _wxopenid;
  11. private string _accountname;
  12. private string _accountpassword;
  13. private string _accountrealname;
  14. private string _accountphone;
  15. private string _accountheadpic;
  16. private string _accountnickname;
  17. private string _city;
  18. private string _address;
  19. private int _roleid;
  20. private bool _isdelete;
  21. private int _creationperson;
  22. private DateTime _creationdate;
  23. private int _lastmodifiedperson;
  24. private DateTime _lastmodified;
  25. private string _purstaffid;
  26. private string _rolename;
  27. private string _staffName;
  28. private string _pk;
  29. private DateTime? _LastLoginTime;
  30. private string _LastLoginIp;
  31. private string _Sup_OrgId;
  32. public Account()
  33. {
  34. }
  35. public int Id
  36. {
  37. get { return _id; }
  38. set { _id = value; }
  39. }
  40. public string WxOpenId
  41. {
  42. get { return _wxopenid; }
  43. set { _wxopenid = value; }
  44. }
  45. public string AccountName
  46. {
  47. get { return _accountname; }
  48. set { _accountname = value; }
  49. }
  50. public string AccountPassWord
  51. {
  52. get { return _accountpassword; }
  53. set { _accountpassword = value; }
  54. }
  55. public string AccountRealName
  56. {
  57. get { return _accountrealname; }
  58. set { _accountrealname = value; }
  59. }
  60. public string AccountPhone
  61. {
  62. get { return _accountphone; }
  63. set { _accountphone = value; }
  64. }
  65. public string AccountHeadPic
  66. {
  67. get { return _accountheadpic; }
  68. set { _accountheadpic = value; }
  69. }
  70. public string AccountNickName
  71. {
  72. get { return _accountnickname; }
  73. set { _accountnickname = value; }
  74. }
  75. public string City
  76. {
  77. get { return _city; }
  78. set { _city = value; }
  79. }
  80. public string Address
  81. {
  82. get { return _address; }
  83. set { _address = value; }
  84. }
  85. public int RoleId
  86. {
  87. get { return _roleid; }
  88. set { _roleid = value; }
  89. }
  90. public bool IsDelete
  91. {
  92. get { return _isdelete; }
  93. set { _isdelete = value; }
  94. }
  95. public int CreationPerson
  96. {
  97. get { return _creationperson; }
  98. set { _creationperson = value; }
  99. }
  100. public DateTime CreationDate
  101. {
  102. get { return _creationdate; }
  103. set { _creationdate = value; }
  104. }
  105. public int LastModifiedPerson
  106. {
  107. get { return _lastmodifiedperson; }
  108. set { _lastmodifiedperson = value; }
  109. }
  110. public DateTime LastModified
  111. {
  112. get { return _lastmodified; }
  113. set { _lastmodified = value; }
  114. }
  115. public string PurStaffId
  116. {
  117. get { return _purstaffid; }
  118. set { _purstaffid = value; }
  119. }
  120. public string RoleName { get => _rolename; set => _rolename = value; }
  121. private string _creater;
  122. public string Creater { get => _creater; set => _creater = value; }
  123. public string StaffName { get => _staffName; set => _staffName = value; }
  124. public string Pk { get => _pk; set => _pk = value; }
  125. public string LastLoginIp { get => _LastLoginIp; set => _LastLoginIp = value; }
  126. public DateTime? LastLoginTime { get => _LastLoginTime; set => _LastLoginTime = value; }
  127. public string Sup_OrgId { get => _Sup_OrgId; set => _Sup_OrgId = value; }
  128. }
  129. }