using System; using System.Data; namespace DSWeb.Models { public class GridColumnEntity { private string _gid;//惟一主键 private string _name;//字段名称 private string _description;//字段显示名称 private int _index;//索引值 private int _width;//显示宽度 private int _visible_state;//是否可见 public GridColumnEntity() { } /// /// 惟一主键 /// public string GID { get { return _gid; } set { _gid = value; } } /// /// 字段名称 /// public string Name { get { return _name; } set { _name = value; } } /// /// 字段显示名称 /// public string Description { get { return _description; } set { _description = value; } } /// /// 索引值 /// public int Index { get { return _index; } set { _index = value; } } /// /// 显示宽度 /// public int Width { get { return _width; } set { _width = value; } } /// /// 是否可见 /// public int VisibleState { get { return _visible_state; } set { _visible_state = value; } } } }