using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace OASystem.Domain.Entities.Customer { /// /// 客户资料表 /// [SugarTable("Crm_CustomerFile")] public class Crm_CustomerFile:EntityBase { /// /// 客户Id /// [SugarColumn(IsNullable =true,ColumnDataType ="int")] public int DcId { get; set; } /// /// /// [SugarColumn(IsNullable =true,ColumnDataType ="varchar(80)")] public string Publisher { get; set; } /// /// 文件名 /// [SugarColumn(IsNullable =true,ColumnDataType ="varchar(300)")] public string FileName { get; set; } /// /// 所属环节 /// [SugarColumn(IsNullable =true,ColumnDataType ="int")] public int FileBusiType { get; set; } } }