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.

56 lines
1.4 KiB
C#

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