using System; using System.Text; using System.Collections.Generic; using System.Data; namespace DSWeb.SoftMng.Model{ //LicenseDocu public class LicenseDocu { /// /// GID /// private string _gid; public string GID { get{ return _gid; } set{ _gid = value; } } /// /// 单证代码 /// private string _docucode; public string DocuCode { get{ return _docucode; } set{ _docucode = value; } } /// /// DocuCode_Text /// private string _docucode_text; public string DocuCode_Text { get{ return _docucode_text; } set{ _docucode_text = value; } } /// /// 单证编号 /// private string _certcode; public string CertCode { get{ return _certcode; } set{ _certcode = value; } } /// /// 关联 [DecHead] 表 的主键 [GID] /// private string _pid; public string PID { get{ return _pid; } set{ _pid = value; } } } }