using System; using System.Text; using System.Collections.Generic; using System.Data; namespace DSWeb.SoftMng.Model{ //DecCopLimit public class DecCopLimit { /// /// GID /// private string _gid; public string GID { get{ return _gid; } set{ _gid = value; } } /// /// 企业资质编号 /// private string _entqualifno; public string EntQualifNo { get{ return _entqualifno; } set{ _entqualifno = value; } } /// /// 企业资质类别代码 /// private string _entqualiftypecode; public string EntQualifTypeCode { get{ return _entqualiftypecode; } set{ _entqualiftypecode = value; } } /// /// EntQualifTypeCode_Text /// private string _entqualiftypecode_text; public string EntQualifTypeCode_Text { get{ return _entqualiftypecode_text; } set{ _entqualiftypecode_text = value; } } /// /// 关联DecHead GID /// private string _pid; public string PID { get{ return _pid; } set{ _pid = value; } } } }