You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
47 lines
1.2 KiB
C#
47 lines
1.2 KiB
C#
using System;
|
|
using System.Text;
|
|
using System.Collections.Generic;
|
|
using System.Data;
|
|
namespace DSWeb.SoftMng.Model{
|
|
//sys_CustomColumnsConfig
|
|
public class sys_CustomColumnsConfig
|
|
{
|
|
/// <summary>
|
|
/// GId
|
|
/// </summary>
|
|
private string _gid;
|
|
public string GId
|
|
{
|
|
get{ return _gid; }
|
|
set{ _gid = value; }
|
|
}
|
|
/// <summary>
|
|
/// 标识名称
|
|
/// </summary>
|
|
private string _nodename;
|
|
public string NodeName
|
|
{
|
|
get{ return _nodename; }
|
|
set{ _nodename = value; }
|
|
}
|
|
/// <summary>
|
|
/// UserCode
|
|
/// </summary>
|
|
private string _usercode;
|
|
public string UserCode
|
|
{
|
|
get{ return _usercode; }
|
|
set{ _usercode = value; }
|
|
}
|
|
/// <summary>
|
|
/// UserConfig
|
|
/// </summary>
|
|
private string _userconfig;
|
|
public string UserConfig
|
|
{
|
|
get{ return _userconfig; }
|
|
set{ _userconfig = value; }
|
|
}
|
|
}
|
|
}
|