Crm_CustomerFile.cs 1.0 KB

12345678910111213141516171819202122232425262728293031323334353637
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Threading.Tasks;
  6. namespace OASystem.Domain.Entities.Customer
  7. {
  8. /// <summary>
  9. /// 客户资料表
  10. /// </summary>
  11. [SugarTable("Crm_CustomerFile")]
  12. public class Crm_CustomerFile:EntityBase
  13. {
  14. /// <summary>
  15. /// 客户Id
  16. /// </summary>
  17. [SugarColumn(IsNullable =true,ColumnDataType ="int")]
  18. public int DcId { get; set; }
  19. /// <summary>
  20. ///
  21. /// </summary>
  22. [SugarColumn(IsNullable =true,ColumnDataType ="varchar(80)")]
  23. public string Publisher { get; set; }
  24. /// <summary>
  25. /// 文件名
  26. /// </summary>
  27. [SugarColumn(IsNullable =true,ColumnDataType ="varchar(300)")]
  28. public string FileName { get; set; }
  29. /// <summary>
  30. /// 所属环节
  31. /// </summary>
  32. [SugarColumn(IsNullable =true,ColumnDataType ="int")]
  33. public int FileBusiType { get; set; }
  34. }
  35. }