using System; using System.Text; using System.Collections.Generic; using System.Data; namespace DSWeb.SoftMng.Model{ //sys_CustomColumnsConfig public class sys_CustomColumnsConfig { /// /// GId /// private string _gid; public string GId { get{ return _gid; } set{ _gid = value; } } /// /// 标识名称 /// private string _nodename; public string NodeName { get{ return _nodename; } set{ _nodename = value; } } /// /// UserCode /// private string _usercode; public string UserCode { get{ return _usercode; } set{ _usercode = value; } } /// /// UserConfig /// private string _userconfig; public string UserConfig { get{ return _userconfig; } set{ _userconfig = value; } } } }