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