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.
DS7/DSWeb/Areas/SoftMng/Model/sys_Enumeration.cs

47 lines
1.1 KiB
C#

2 years ago
using System;
using System.Text;
using System.Collections.Generic;
using System.Data;
namespace DSWeb.SoftMng.Model{
//sys_Enumeration
public class sys_Enumeration
{
/// <summary>
/// 主键
/// </summary>
private string _gid;
public string GID
{
get{ return _gid; }
set{ _gid = value; }
}
/// <summary>
/// 值
/// </summary>
private string _value;
public string Value
{
get{ return _value; }
set{ _value = value; }
}
/// <summary>
/// 描述
/// </summary>
private string _name;
public string Name
{
get{ return _name; }
set{ _name = value; }
}
/// <summary>
/// 类型
/// </summary>
private string _type;
public string Type
{
get{ return _type; }
set{ _type = value; }
}
}
}