Model_iNethinkCMS_Dict.cs 1.9 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273
  1. /*******************************************************************************
  2. * iNethinkCMS - 网站内容管理系统
  3. * Copyright (C) 2012-2013 inethink.com
  4. *
  5. * @author jackyang <69991000@qq.com>
  6. * @website http://cms.inethink.com
  7. * @version 1.3.6.0 (2013-08-14)
  8. *
  9. * This is licensed under the GNU LGPL, version 3.0 or later.
  10. * For details, see: http://www.gnu.org/licenses/gpl-3.0.html
  11. *******************************************************************************/
  12. using System;
  13. namespace iNethinkCMS.Model
  14. {
  15. /// <summary>
  16. /// 数据字典
  17. /// </summary>
  18. [Serializable]
  19. public partial class Model_iNethinkCMS_Dict
  20. {
  21. public Model_iNethinkCMS_Dict()
  22. { }
  23. #region Model
  24. private int _id;
  25. private int? _dicttype;
  26. private string _dictname;
  27. private int? _display;
  28. private int? _ordernum;
  29. /// <summary>
  30. ///
  31. /// </summary>
  32. public int ID
  33. {
  34. set { _id = value; }
  35. get { return _id; }
  36. }
  37. /// <summary>
  38. /// 数据字典类型
  39. /// </summary>
  40. public int? DictType
  41. {
  42. set { _dicttype = value; }
  43. get { return _dicttype; }
  44. }
  45. /// <summary>
  46. /// 数据字典名称
  47. /// </summary>
  48. public string DictName
  49. {
  50. set { _dictname = value; }
  51. get { return _dictname; }
  52. }
  53. /// <summary>
  54. /// 数据字典是否启用[0,不启用;1,启用]
  55. /// </summary>
  56. public int? Display
  57. {
  58. set { _display = value; }
  59. get { return _display; }
  60. }
  61. /// <summary>
  62. /// 数据字典排序权重
  63. /// </summary>
  64. public int? OrderNum
  65. {
  66. set { _ordernum = value; }
  67. get { return _ordernum; }
  68. }
  69. #endregion Model
  70. }
  71. }