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.5 KiB
C#
56 lines
1.5 KiB
C#
using System;
|
|
using System.Text;
|
|
using System.Collections.Generic;
|
|
using System.Data;
|
|
namespace DSWeb.SoftMng.Model{
|
|
//DecCopLimit
|
|
public class DecCopLimit
|
|
{
|
|
/// <summary>
|
|
/// GID
|
|
/// </summary>
|
|
private string _gid;
|
|
public string GID
|
|
{
|
|
get{ return _gid; }
|
|
set{ _gid = value; }
|
|
}
|
|
/// <summary>
|
|
/// 企业资质编号
|
|
/// </summary>
|
|
private string _entqualifno;
|
|
public string EntQualifNo
|
|
{
|
|
get{ return _entqualifno; }
|
|
set{ _entqualifno = value; }
|
|
}
|
|
/// <summary>
|
|
/// 企业资质类别代码
|
|
/// </summary>
|
|
private string _entqualiftypecode;
|
|
public string EntQualifTypeCode
|
|
{
|
|
get{ return _entqualiftypecode; }
|
|
set{ _entqualiftypecode = value; }
|
|
}
|
|
/// <summary>
|
|
/// EntQualifTypeCode_Text
|
|
/// </summary>
|
|
private string _entqualiftypecode_text;
|
|
public string EntQualifTypeCode_Text
|
|
{
|
|
get{ return _entqualiftypecode_text; }
|
|
set{ _entqualiftypecode_text = value; }
|
|
}
|
|
/// <summary>
|
|
/// 关联DecHead GID
|
|
/// </summary>
|
|
private string _pid;
|
|
public string PID
|
|
{
|
|
get{ return _pid; }
|
|
set{ _pid = value; }
|
|
}
|
|
}
|
|
}
|