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.

101 lines
2.6 KiB
C#

10 months ago
using System;
using System.Text;
using System.Collections.Generic;
using System.Data;
namespace DSWeb.SoftMng.Model{
//DecSign
public class DecSign
{
/// <summary>
/// GID
/// </summary>
private string _gid;
public string GID
{
get{ return _gid; }
set{ _gid = value; }
}
/// <summary>
/// 操作员类型
/// </summary>
private string _opertype;
public string OperType
{
get{ return _opertype; }
set{ _opertype = value; }
}
/// <summary>
/// 操作员IC卡号
/// </summary>
private string _iccode;
public string ICCode
{
get{ return _iccode; }
set{ _iccode = value; }
}
/// <summary>
/// 操作企业组织机构代码
/// </summary>
private string _copcode;
public string CopCode
{
get{ return _copcode; }
set{ _copcode = value; }
}
/// <summary>
/// OperName
/// </summary>
private string _opername;
public string OperName
{
get{ return _opername; }
set{ _opername = value; }
}
/// <summary>
/// ClientSeqNo
/// </summary>
private string _clientseqno;
public string ClientSeqNo
{
get{ return _clientseqno; }
set{ _clientseqno = value; }
}
/// <summary>
/// Sign
/// </summary>
private string _sign;
public string Sign
{
get{ return _sign; }
set{ _sign = value; }
}
/// <summary>
/// SignDate
/// </summary>
private string _signdate;
public string SignDate
{
get{ return _signdate; }
set{ _signdate = value; }
}
/// <summary>
/// Certificate
/// </summary>
private string _certificate;
public string Certificate
{
get{ return _certificate; }
set{ _certificate = value; }
}
/// <summary>
/// HostId
/// </summary>
private string _hostid;
public string HostId
{
get{ return _hostid; }
set{ _hostid = value; }
}
}
}