namespace OASystem.Domain.Entities.Customer
{
///
/// 客户家庭成员表
///
[SugarTable("Crm_VisaCustomerFamily")]
public class Crm_VisaCustomerFamily:EntityBase
{
///
/// 客户表ID
///
[SugarColumn(IsNullable = true, ColumnDataType = "int")]
public int DcId { get; set; }
///
/// 家庭成员称谓
/// SetData = 40 签证客户家人称谓 读取时使用
/// 存储时 存储name
///
[SugarColumn(IsNullable = true, ColumnDataType = "varchar(50)")]
public string Appellation { get; set; }
///
/// 家庭成员姓名
///
[SugarColumn(IsNullable = true, ColumnDataType = "varchar(50)")]
public string Name { get; set; }
///
/// 家庭成员出生日期
///
[SugarColumn(IsNullable =true,ColumnDataType ="DateTime")]
public DateTime BirthDay { get; set; }
///
/// 家庭成员出生地
///
[SugarColumn(IsNullable = true, ColumnDataType = "varchar(100)")]
public string BirthPlace { get; set; }
///
/// 家庭成员政治面貌
///
[SugarColumn(IsNullable = true, ColumnDataType = "varchar(50)")]
public string Politics { get; set; }
///
/// 家庭成员工作单位
///
[SugarColumn(IsNullable = true, ColumnDataType = "varchar(80)")]
public string Client { get; set; }
///
/// 家庭地址
///
[SugarColumn(IsNullable = true, ColumnDataType = "varchar(80)")]
public string Address { get; set; }
///
/// 是否欧盟公民 0否1是
///
[SugarColumn(IsNullable = true, ColumnDataType = "int")]
public int IsEu { get; set; }
///
/// 拥有欧盟、欧洲经济区或瑞士公民身份的家庭成员姓名
///
[SugarColumn(IsNullable = true, ColumnDataType = "varchar(50)")]
public string NameSnd { get; set; }
///
/// 拥有欧盟、欧洲经济区或瑞士公民身份的家庭成员生日
///
[SugarColumn(IsNullable = true, ColumnDataType = "DateTime")]
public DateTime BirthDaySnd { get; set; }
///
/// 拥有欧盟、欧洲经济区或瑞士公民身份的家庭成员国籍
///
[SugarColumn(IsNullable = true, ColumnDataType = "varchar(50)")]
public string Nationality { get; set; }
///
/// 拥有欧盟、欧洲经济区或瑞士公民身份的家庭成员旅行证件编号或身份证号码
///
[SugarColumn(IsNullable = true, ColumnDataType = "varchar(50)")]
public string IDCard { get; set; }
///
/// 拥有欧盟、欧洲经济区或瑞士公民身份的家庭成员与申请人的关系
///
[SugarColumn(IsNullable = true, ColumnDataType = "varchar(50)")]
public string Reletionship { get; set; }
///
/// 家庭成员是否在美国
///
[SugarColumn(IsNullable = true, ColumnDataType = "int")]
public int IsUSA { get; set; }
}
}