Grp_VisitingClients.cs 1.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758
  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.Groups
  7. {
  8. /// <summary>
  9. /// 拜访团组客户
  10. /// </summary>
  11. [SugarTable("Grp_VisitingClients")]
  12. public class Grp_VisitingClients:EntityBase
  13. {
  14. /// <summary>
  15. /// 团组Id
  16. /// </summary>
  17. [SugarColumn(IsNullable = true, ColumnDataType = "int")]
  18. public int DiId { get; set; }
  19. /// <summary>
  20. /// 拜访时间 - 开始
  21. /// </summary>
  22. [SugarColumn(IsNullable = true, ColumnDataType = "datetime")]
  23. public DateTime BeginDt { get; set; }
  24. /// <summary>
  25. /// 拜访时间 - 结束
  26. /// </summary>
  27. [SugarColumn(IsNullable = true, ColumnDataType = "datetime")]
  28. public DateTime EndDt { get; set; }
  29. /// <summary>
  30. /// 客户单位
  31. /// </summary>
  32. [SugarColumn(IsNullable = true, ColumnDataType = "varchar(100)")]
  33. public string CustomerUnit { get; set; }
  34. /// <summary>
  35. /// 客户职务
  36. /// </summary>
  37. [SugarColumn(IsNullable = true, ColumnDataType = "varchar(50)")]
  38. public string CustomerJob { get; set; }
  39. /// <summary>
  40. /// 客户名称
  41. /// </summary>
  42. [SugarColumn(IsNullable = true, ColumnDataType = "varchar(30)")]
  43. public string CustomerName { get; set; }
  44. /// <summary>
  45. /// 客户联系方式
  46. /// </summary>
  47. [SugarColumn(IsNullable = true, ColumnDataType = "varchar(30)")]
  48. public string CustomerContact { get; set; }
  49. }
  50. }