Model_DZKJ_DistributorAccount.cs 2.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. namespace LYFZ.WeixinServiceDate.Model
  6. {
  7. public class Model_DZKJ_DistributorAccount
  8. {
  9. public Model_DZKJ_DistributorAccount()
  10. {
  11. }
  12. long _ID;
  13. public long ID
  14. {
  15. get { return _ID; }
  16. set { _ID = value; }
  17. }
  18. int _AccountID;
  19. public int AccountID
  20. {
  21. get { return _AccountID; }
  22. set { _AccountID = value; }
  23. }
  24. string _Contacts = "";
  25. public string Contacts
  26. {
  27. get { return _Contacts; }
  28. set { _Contacts = value; }
  29. }
  30. string _Telephone = "";
  31. public string Telephone
  32. {
  33. get { return _Telephone; }
  34. set { _Telephone = value; }
  35. }
  36. int _Sex = 1;
  37. public int Sex
  38. {
  39. get { return _Sex; }
  40. set { _Sex = value; }
  41. }
  42. string _CompanyName = "";
  43. public string CompanyName
  44. {
  45. get { return _CompanyName; }
  46. set { _CompanyName = value; }
  47. }
  48. string _CompanyAddress = "";
  49. public string CompanyAddress
  50. {
  51. get { return _CompanyAddress; }
  52. set { _CompanyAddress = value; }
  53. }
  54. int _StartSimulatorCount = 10;
  55. public int StartSimulatorCount
  56. {
  57. get { return _StartSimulatorCount; }
  58. set { _StartSimulatorCount = value; }
  59. }
  60. string _IP = "";
  61. public string IP
  62. {
  63. get { return _IP; }
  64. set { _IP = value; }
  65. }
  66. DateTime _RegistrationTime = DateTime.Now;
  67. public DateTime RegistrationTime
  68. {
  69. get { return _RegistrationTime; }
  70. set { _RegistrationTime = value; }
  71. }
  72. DateTime _LatestLoginTime;
  73. public DateTime LatestLoginTime
  74. {
  75. get { return _LatestLoginTime; }
  76. set { _LatestLoginTime = value; }
  77. }
  78. int _IsEnabled = 1;
  79. /// <summary>
  80. /// 0 为禁用 1 为启用
  81. /// </summary>
  82. public int IsEnabled
  83. {
  84. get { return _IsEnabled; }
  85. set { _IsEnabled = value; }
  86. }
  87. string _AppName = "";
  88. /// <summary>
  89. /// AppName
  90. /// </summary>
  91. public string AppName
  92. {
  93. get { return _AppName; }
  94. set { _AppName = value; }
  95. }
  96. }
  97. }