using System; using System.Text; namespace Pur.Entity.configureEntity { [Serializable] public class SuppAptitude { /** 供应商代码 */ private string suppCode; public string SuppCode { get { return suppCode; } set { suppCode = value; } } private string id; public string Id { get { return id; } set { id = value; } } /** 结构代码 */ private string archCode; public string ArchCode { get { return archCode; } set { archCode = value; } } /** 供应商名称 */ private string suppName; public string SuppName { get { return suppName; } set { suppName = value; } } /** 供应商中文简称 */ private string suppShortName; public string SuppShortName { get { return suppShortName; } set { suppShortName = value; } } /** 证书强制类型 */ private string certiConstraint; public string CertiConstraint { get { return certiConstraint; } set { certiConstraint = value; } } /** 证书发放机构 */ private string certiOfficer; public string CertiOfficer { get { return certiOfficer; } set { certiOfficer = value; } } /** 证书编号 */ private string certNo; public string CertNo { get { return certNo; } set { certNo = value; } } /** 证书类型 */ private string certType; public string CertType { get { return certType; } set { certType = value; } } /** 证书有效期开始 */ private DateTime? certValidStart; public DateTime? CertValidStart { get { return certValidStart; } set { certValidStart = value; } } /** 证书有效期结束 */ private DateTime? certValidEnd; public DateTime? CertValidEnd { get { return certValidEnd; } set { certValidEnd = value; } } /** 证书描述 */ private string certDesc; public string CertDesc { get { return certDesc; } set { certDesc = value; } } /** 证书文件名 */ private string certPath; public string CertPath { get { return certPath; } set { certPath = value; } } /** 证书相对路径 */ private string certPathOld; public string CertPathOld { get { return certPathOld; } set { certPathOld = value; } } /** 证书版本号 */ private string certNoV; public string CertNoV { get { return certNoV; } set { certNoV = value; } } /** 数据状态(有效、无效) */ private string validflag; public string Validflag { get { return validflag; } set { validflag = value; } } /** 创建人 */ private string createName; public string CreateName { get { return createName; } set { createName = value; } } /** 创建时间 */ private DateTime? createTime; public DateTime? CreateTime { get { return createTime; } set { createTime = value; } } /** 修改人 */ private string updateName; public string UpdateName { get { return updateName; } set { updateName = value; } } /** 修改时间 */ private DateTime? updateTime; public DateTime? UpdateTime { get { return updateTime; } set { updateTime = value; } } /** 废除人 */ private string deleteName; public string DeleteName { get { return deleteName; } set { deleteName = value; } } /** 废除时间 */ private DateTime? deleteTime; public DateTime? DeleteTime { get { return deleteTime; } set { deleteTime = value; } } /** 创建人ID */ private string createUserid; public string CreateUserid { get { return createUserid; } set { createUserid = value; } } /** 修改人ID */ private string updateUserid; public string UpdateUserid { get { return updateUserid; } set { updateUserid = value; } } /** 废除人ID */ private string deleteUserid; public string DeleteUserid { get { return deleteUserid; } set { deleteUserid = value; } } } }