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