Crm_NewClientVisitRecord.cs 857 B

1234567891011121314151617181920212223242526272829
  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. /// <summary>
  8. /// 客户资料(新)拜访记录(客户信息回收标准)
  9. /// </summary>
  10. [SugarTable("Crm_NewClientVisitRecord", "客户资料(新)拜访记录(客户信息回收标准)")]
  11. public class Crm_NewClientVisitRecord : EntityBase
  12. {
  13. /// <summary>
  14. /// 客户资料Id
  15. /// </summary>
  16. [SugarColumn(ColumnName = "NewClientId", ColumnDescription = "客户资料Id", IsNullable = true, ColumnDataType = "int")]
  17. public int NewClientId { get; set; }
  18. /// <summary>
  19. /// 是否有意向
  20. /// </summary>
  21. public bool HasIntention { get; set; }
  22. /// <summary>近期是否客户维护</summary>
  23. public bool RecentMaintain { get; set; }
  24. }