using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace OASystem.Domain.Entities.Groups { /// /// 拜访团组客户 /// [SugarTable("Grp_VisitingClients")] public class Grp_VisitingClients:EntityBase { /// /// 团组Id /// [SugarColumn(IsNullable = true, ColumnDataType = "int")] public int DiId { get; set; } /// /// 拜访时间 - 开始 /// [SugarColumn(IsNullable = true, ColumnDataType = "datetime")] public DateTime BeginDt { get; set; } /// /// 拜访时间 - 结束 /// [SugarColumn(IsNullable = true, ColumnDataType = "datetime")] public DateTime EndDt { get; set; } /// /// 客户单位 /// [SugarColumn(IsNullable = true, ColumnDataType = "varchar(100)")] public string CustomerUnit { get; set; } /// /// 客户职务 /// [SugarColumn(IsNullable = true, ColumnDataType = "varchar(50)")] public string CustomerJob { get; set; } /// /// 客户名称 /// [SugarColumn(IsNullable = true, ColumnDataType = "varchar(30)")] public string CustomerName { get; set; } /// /// 客户联系方式 /// [SugarColumn(IsNullable = true, ColumnDataType = "varchar(30)")] public string CustomerContact { get; set; } } }