APPConfig.cs 2.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. namespace LYFZ.WanYuKeFuData.Model
  6. {
  7. public class APPConfig
  8. {
  9. public APPConfig() {
  10. }
  11. long _ID;
  12. public long ID
  13. {
  14. get { return _ID; }
  15. set { _ID = value; }
  16. }
  17. string _LYFZAPPName = "";
  18. public string LYFZAPPName
  19. {
  20. get { return _LYFZAPPName; }
  21. set { _LYFZAPPName = value; }
  22. }
  23. string _HostUrl = "";
  24. public string HostUrl
  25. {
  26. get { return _HostUrl; }
  27. set { _HostUrl = value; }
  28. }
  29. string _LYFZAPPID = "";
  30. public string LYFZAPPID
  31. {
  32. get { return _LYFZAPPID; }
  33. set { _LYFZAPPID = value; }
  34. }
  35. string _LYFZAPPKEY = "";
  36. public string LYFZAPPKEY
  37. {
  38. get { return _LYFZAPPKEY; }
  39. set { _LYFZAPPKEY = value; }
  40. }
  41. int _APPType = 0;
  42. /// <summary>
  43. /// APP配置类型 0 为"生产环境" 1 为 "开发环境"
  44. /// </summary>
  45. public int APPType
  46. {
  47. get { return _APPType; }
  48. set { _APPType = value; }
  49. }
  50. string _GTAppID = "";
  51. /// <summary>
  52. /// GTAppID
  53. /// </summary>
  54. public string GTAppID
  55. {
  56. get { return _GTAppID; }
  57. set { _GTAppID = value; }
  58. }
  59. string _GTAppSecret = "";
  60. /// <summary>
  61. /// GTAppSecret
  62. /// </summary>
  63. public string GTAppSecret
  64. {
  65. get { return _GTAppSecret; }
  66. set { _GTAppSecret = value; }
  67. }
  68. string _GTAppKey = "";
  69. /// <summary>
  70. /// GTAppKey
  71. /// </summary>
  72. public string GTAppKey
  73. {
  74. get { return _GTAppKey; }
  75. set { _GTAppKey = value; }
  76. }
  77. string _GTMasterSecret = "";
  78. /// <summary>
  79. /// GTMasterSecret
  80. /// </summary>
  81. public string GTMasterSecret
  82. {
  83. get { return _GTMasterSecret; }
  84. set { _GTMasterSecret = value; }
  85. }
  86. int _APPState = 1;
  87. /// <summary>
  88. /// APP状态 0 禁用 1 启用
  89. /// </summary>
  90. public int APPState
  91. {
  92. get { return _APPState; }
  93. set { _APPState = value; }
  94. }
  95. long _CreationTime = 0;
  96. /// <summary>
  97. /// 创建时间
  98. /// </summary>
  99. public long CreationTime
  100. {
  101. get { return _CreationTime; }
  102. set { _CreationTime = value; }
  103. }
  104. long _UpdateTime = 0;
  105. /// <summary>
  106. /// 更新时间
  107. /// </summary>
  108. public long UpdateTime
  109. {
  110. get { return _UpdateTime; }
  111. set { _UpdateTime = value; }
  112. }
  113. }
  114. }