| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778 | using OASystem.Domain.Attributes;using System;using System.Collections.Generic;using System.Linq;using System.Text;using System.Threading.Tasks;namespace OASystem.Domain.Entities.Customer{    /// <summary>    /// 客户证件表    /// </summary>    [SugarTable("Crm_CustomerCert")]    public class Crm_CustomerCert:EntityBase    {        /// <summary>        /// 客户信息表Id        /// </summary>        [SugarColumn(IsNullable =true,ColumnDataType ="int")]        public int DcId { get; set; }        /// <summary>        /// 证件类型表Id        /// </summary>        [SugarColumn(IsNullable = true, ColumnDataType = "int")]        public int SdId { get; set; }        /// <summary>        /// 护照类型 Id(数据类型表Id)        /// SdId == 74 该字段有值        /// </summary>        [SugarColumn(IsNullable = true, ColumnDataType = "int")]        public int PassportType { get; set; } = 0;        /// <summary>        /// 证件号        /// </summary>        [SugarColumn(IsNullable = true, ColumnDataType = "varchar(30)")]        [Encrypted]        public string CertNo { get; set; }        /// <summary>        /// 签发国        /// </summary>        [SugarColumn(IsNullable = true, ColumnDataType = "varchar(50)")]        public string Country { get; set; }                /// <summary>        /// 签发地区        /// </summary>        [SugarColumn(IsNullable = true, ColumnDataType = "varchar(50)")]        public string Area { get; set; }        /// <summary>        /// 目的地国家        /// </summary>        [SugarColumn(IsNullable = true, ColumnDataType = "varchar(50)")]        public string TargetCountry { get; set; }        /// <summary>        /// 有效期起始时间        /// </summary>        [SugarColumn(IsNullable = true, ColumnDataType = "DateTime")]        public DateTime? IssueDt { get; set; } = null;        /// <summary>        /// 有效期截止时间        /// </summary>        [SugarColumn(IsNullable = true, ColumnDataType = "DateTime")]        public DateTime? ExpiryDt { get; set; } = null;        /// <summary>        /// 身份证户籍地址        /// </summary>        [SugarColumn(IsNullable = true, ColumnDataType = "varchar(100)")]        public string IDCardAddress { get; set; }    }}
 |