using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace OASystem.Domain.Entities.Customer
{
///
/// 客户证件表
///
[SugarTable("Crm_CustomerCert")]
public class Crm_CustomerCert:EntityBase
{
///
/// 客户信息表Id
///
[SugarColumn(IsNullable =true,ColumnDataType ="int")]
public int DcId { get; set; }
///
/// 证件类型表Id
///
[SugarColumn(IsNullable = true, ColumnDataType = "int")]
public string SdId { get; set; }
///
/// 证件号
///
[SugarColumn(IsNullable = true, ColumnDataType = "varchar(30)")]
public string CertNo { get; set; }
///
/// 签发国
///
[SugarColumn(IsNullable = true, ColumnDataType = "varchar(50)")]
public string Country { get; set; }
///
/// 目的地国家
///
[SugarColumn(IsNullable = true, ColumnDataType = "varchar(50)")]
public string TargetCountry { get; set; }
///
/// 签发地区
///
[SugarColumn(IsNullable = true, ColumnDataType = "varchar(50)")]
public string Area { get; set; }
///
/// 有效期起始时间
///
[SugarColumn(IsNullable = true, ColumnDataType = "DateTime")]
public DateTime IssueDt { get; set; }
///
/// 有效期截止时间
///
[SugarColumn(IsNullable = true, ColumnDataType = "DateTime")]
public string ExpiryDt { get; set; }
}
}