123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- namespace OASystem.Domain.Entities.Customer
- {
-
-
-
- [SugarTable("Crm_GroupCustomer")]
- public class Crm_GroupCustomer:EntityBase
- {
-
-
-
- [SugarColumn(IsNullable =true,ColumnDataType ="int")]
- public int DiId { get; set; }
-
-
-
- [SugarColumn(IsNullable = true, ColumnDataType = "varchar(50)")]
- public string FirstName { get; set; }
-
-
-
- [SugarColumn(IsNullable = true, ColumnDataType = "varchar(50)")]
- public string LastName { get; set; }
-
-
-
- [SugarColumn(IsNullable = true, ColumnDataType = "varchar(100)")]
- public string Pinyin { get; set; }
-
-
-
- [SugarColumn(IsNullable = true, ColumnDataType = "varchar(300)")]
- public string Company { get; set; }
-
-
-
- [SugarColumn(IsNullable = true, ColumnDataType = "varchar(100)")]
- public string Job { get; set; }
-
-
-
- [SugarColumn(IsNullable = true, ColumnDataType = "varchar(50)")]
- public string Phone { get; set; }
-
-
-
- [SugarColumn(IsNullable = true, ColumnDataType = "int")]
- public int Sex { get; set; }
-
-
-
- [SugarColumn(IsNullable = true, ColumnDataType = "varchar(50)")]
- public string IDcard { get; set; }
-
-
-
- [SugarColumn(IsNullable = true, ColumnDataType = "varchar(100)")]
- public string PassprotType { get; set; }
-
-
-
- [SugarColumn(IsNullable = true, ColumnDataType = "varchar(50)")]
- public string passportCountry { get; set; }
-
-
-
- [SugarColumn(IsNullable = true, ColumnDataType = "varchar(50)")]
- public string PassportNo { get; set; }
-
-
-
- [SugarColumn(IsNullable = true, ColumnDataType = "varchar(300)")]
- public string IssuePlace { get; set; }
-
-
-
- [SugarColumn(IsNullable = true, ColumnDataType = "date")]
- public DateTime IssueDate { get; set; }
-
-
-
- [SugarColumn(IsNullable = true, ColumnDataType = "date")]
- public DateTime ExpiryDate { get; set; }
-
-
-
- [SugarColumn(IsNullable = true, ColumnDataType = "varchar(50)")]
- public string Birthday { get; set; }
-
-
-
- [SugarColumn(IsNullable = true, ColumnDataType = "int")]
- public int AirType { get; set; }
-
-
-
- [SugarColumn(IsNullable = true, ColumnDataType = "varchar(500)")]
- public string AirRemark { get; set; }
-
-
-
- [SugarColumn(IsNullable = true, ColumnDataType = "varchar(300)")]
- public string RoomType { get; set; }
- }
- }
|