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#
56 lines
1.4 KiB
C#
using System;
|
|
using System.Text;
|
|
using System.Collections.Generic;
|
|
using System.Data;
|
|
namespace DSWeb.SoftMng.Model{
|
|
//DecRequestCert
|
|
public class DecRequestCert
|
|
{
|
|
/// <summary>
|
|
/// GID
|
|
/// </summary>
|
|
private string _gid;
|
|
public string GID
|
|
{
|
|
get{ return _gid; }
|
|
set{ _gid = value; }
|
|
}
|
|
/// <summary>
|
|
/// 申请单证代码
|
|
/// </summary>
|
|
private string _appcertcode;
|
|
public string AppCertCode
|
|
{
|
|
get{ return _appcertcode; }
|
|
set{ _appcertcode = value; }
|
|
}
|
|
/// <summary>
|
|
/// 申请单证正本数
|
|
/// </summary>
|
|
private int? _applori;
|
|
public int? ApplOri
|
|
{
|
|
get{ return _applori; }
|
|
set{ _applori = value; }
|
|
}
|
|
/// <summary>
|
|
/// 申请单证副本数
|
|
/// </summary>
|
|
private int? _applcopyquan;
|
|
public int? ApplCopyQuan
|
|
{
|
|
get{ return _applcopyquan; }
|
|
set{ _applcopyquan = value; }
|
|
}
|
|
/// <summary>
|
|
/// 关联HecHead GID
|
|
/// </summary>
|
|
private string _pid;
|
|
public string PID
|
|
{
|
|
get{ return _pid; }
|
|
set{ _pid = value; }
|
|
}
|
|
}
|
|
}
|