/******************************************************************************* * iNethinkCMS - 网站内容管理系统 * Copyright (C) 2012-2013 inethink.com * * @author jackyang <69991000@qq.com> * @website http://cms.inethink.com * @version 1.3.6.0 (2013-08-14) * * This is licensed under the GNU LGPL, version 3.0 or later. * For details, see: http://www.gnu.org/licenses/gpl-3.0.html *******************************************************************************/ using System; namespace iNethinkCMS.Model { /// /// 数据字典 /// [Serializable] public partial class Model_iNethinkCMS_Dict { public Model_iNethinkCMS_Dict() { } #region Model private int _id; private int? _dicttype; private string _dictname; private int? _display; private int? _ordernum; /// /// /// public int ID { set { _id = value; } get { return _id; } } /// /// 数据字典类型 /// public int? DictType { set { _dicttype = value; } get { return _dicttype; } } /// /// 数据字典名称 /// public string DictName { set { _dictname = value; } get { return _dictname; } } /// /// 数据字典是否启用[0,不启用;1,启用] /// public int? Display { set { _display = value; } get { return _display; } } /// /// 数据字典排序权重 /// public int? OrderNum { set { _ordernum = value; } get { return _ordernum; } } #endregion Model } }