Model_SystemConfigure.cs 2.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105
  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_SystemConfigure
  8. {
  9. public Model_SystemConfigure()
  10. { }
  11. #region Model
  12. private int _id;
  13. private string _sconfig_code;
  14. private string _sconfig_name;
  15. private string _sconfig_value;
  16. private bool _sconfig_isenabled;
  17. private string _sconfig_remark;
  18. private string _sconfig_type;
  19. private int _sconfig_order;
  20. private DateTime _sconfig_createdatetime;
  21. private string _sconfig_createname;
  22. /// <summary>
  23. /// ID
  24. /// </summary>
  25. public int ID
  26. {
  27. set { _id = value; }
  28. get { return _id; }
  29. }
  30. /// <summary>
  31. /// 配置项代码
  32. /// </summary>
  33. public string Sconfig_Code
  34. {
  35. set { _sconfig_code = value; }
  36. get { return _sconfig_code; }
  37. }
  38. /// <summary>
  39. /// 配置项名称
  40. /// </summary>
  41. public string Sconfig_Name
  42. {
  43. set { _sconfig_name = value; }
  44. get { return _sconfig_name; }
  45. }
  46. /// <summary>
  47. /// 配置项值
  48. /// </summary>
  49. public string Sconfig_Value
  50. {
  51. set { _sconfig_value = value; }
  52. get { return _sconfig_value; }
  53. }
  54. /// <summary>
  55. /// 是否启用配置项 0为不启用 1为启用
  56. /// </summary>
  57. public bool Sconfig_IsEnabled
  58. {
  59. set { _sconfig_isenabled = value; }
  60. get { return _sconfig_isenabled; }
  61. }
  62. /// <summary>
  63. /// 配置项描述
  64. /// </summary>
  65. public string Sconfig_Remark
  66. {
  67. set { _sconfig_remark = value; }
  68. get { return _sconfig_remark; }
  69. }
  70. /// <summary>
  71. /// 配置项类型
  72. /// </summary>
  73. public string Sconfig_Type
  74. {
  75. set { _sconfig_type = value; }
  76. get { return _sconfig_type; }
  77. }
  78. /// <summary>
  79. /// 排序
  80. /// </summary>
  81. public int Sconfig_Order
  82. {
  83. set { _sconfig_order = value; }
  84. get { return _sconfig_order; }
  85. }
  86. /// <summary>
  87. /// 录入时间
  88. /// </summary>
  89. public DateTime Sconfig_CreateDatetime
  90. {
  91. set { _sconfig_createdatetime = value; }
  92. get { return _sconfig_createdatetime; }
  93. }
  94. /// <summary>
  95. /// 录入人
  96. /// </summary>
  97. public string Sconfig_CreateName
  98. {
  99. set { _sconfig_createname = value; }
  100. get { return _sconfig_createname; }
  101. }
  102. #endregion Model
  103. }
  104. }