using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace OASystem.Domain.Entities.Customer { /// /// 客户工作经历表 /// [SugarTable("Crm_VisaCustomerCompany")] public class Crm_VisaCustomerCompany:EntityBase { /// /// 客户表ID /// [SugarColumn(IsNullable = true, ColumnDataType = "int")] public int DcId { get; set; } /// /// 公司名称 /// [SugarColumn(IsNullable = true, ColumnDataType = "varchar(100)")] public string Company { get; set; } /// /// 公司地址 /// [SugarColumn(IsNullable =true,ColumnDataType ="varchar(300)")] public string CompanyAddress { get; set; } /// /// 公司电话 /// [SugarColumn(IsNullable = true, ColumnDataType = "varchar(20)")] public string Phone { get; set; } /// /// 职务 /// [SugarColumn(IsNullable = true, ColumnDataType = "varchar(50)")] public string Job { get; set; } /// /// 主管名字 /// [SugarColumn(IsNullable = true, ColumnDataType = "varchar(20)")] public string LeaderName { get; set; } /// /// 雇佣起始年月日 /// [SugarColumn(IsNullable = true, ColumnDataType = "DateTime")] public DateTime WorkStart { get; set; } /// /// 雇佣结束年月日 /// [SugarColumn(IsNullable = true, ColumnDataType = "DateTime")] public DateTime WorkEnd { get; set; } /// /// 工作职责及内容简述 /// [SugarColumn(IsNullable = true, ColumnDataType = "varchar(500)")] public string WorkState { get; set; } } }