12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273 |
-
- 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; }
- }
-
-
-
- public int? Display
- {
- set { _display = value; }
- get { return _display; }
- }
-
-
-
- public int? OrderNum
- {
- set { _ordernum = value; }
- get { return _ordernum; }
- }
- #endregion Model
- }
- }
|