123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990 |
-
- namespace OASystem.Domain.Entities.Customer
- {
-
-
-
- [SugarTable("Crm_VisaCustomerFamily")]
- public class Crm_VisaCustomerFamily:EntityBase
- {
-
-
-
- [SugarColumn(IsNullable = true, ColumnDataType = "int")]
- public int DcId { get; set; }
-
-
-
-
-
- [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; }
-
-
-
- [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; }
- }
- }
|