using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace OT.Model { [Serializable] public partial class OTB_SYS_PersonalGridManage { public OTB_SYS_PersonalGridManage() { } #region Model private string _grid_id; private string _gridtitle; private string _pagename; private string _tablename; private string _datafield; private string _fieldname; private string _querytype; private string _gridsetting; private string _sort_order; private string _sort; private string _columnwidth; private string _columnalign; private string _type; private string _effective; private int? _pager; private string _createuser; private DateTime? _createdate; private string _modifyuser; private DateTime? _modifydate; /// /// /// public string Grid_Id { set { _grid_id = value; } get { return _grid_id; } } /// /// /// public string GridTitle { set { _gridtitle = value; } get { return _gridtitle; } } /// /// /// public string PageName { set { _pagename = value; } get { return _pagename; } } /// /// /// public string TableName { set { _tablename = value; } get { return _tablename; } } /// /// /// public string DataField { set { _datafield = value; } get { return _datafield; } } /// /// /// public string FieldName { set { _fieldname = value; } get { return _fieldname; } } /// /// /// public string QueryType { set { _querytype = value; } get { return _querytype; } } /// /// /// public string GridSetting { set { _gridsetting = value; } get { return _gridsetting; } } /// /// /// public string sort_Order { set { _sort_order = value; } get { return _sort_order; } } /// /// /// public string sort { set { _sort = value; } get { return _sort; } } /// /// /// public string columnWidth { set { _columnwidth = value; } get { return _columnwidth; } } /// /// /// public string columnAlign { set { _columnalign = value; } get { return _columnalign; } } /// /// /// public string Type { set { _type = value; } get { return _type; } } /// /// /// public string Effective { set { _effective = value; } get { return _effective; } } /// /// /// public int? Pager { set { _pager = value; } get { return _pager; } } /// /// /// public string CreateUser { set { _createuser = value; } get { return _createuser; } } /// /// /// public DateTime? CreateDate { set { _createdate = value; } get { return _createdate; } } /// /// /// public string ModifyUser { set { _modifyuser = value; } get { return _modifyuser; } } /// /// /// public DateTime? ModifyDate { set { _modifydate = value; } get { return _modifydate; } } public string limitCount { get; set; } public string QueryField { get; set; } public string QueryName { get; set; } public string QueryDefault { get; set; } public string QueryWidth { get; set; } public string queryCondition { get; set; } #endregion Model } }