NewClientDataQueryDto.cs 805 B

12345678910111213141516171819202122232425262728293031323334353637383940
  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.Dtos.CRM
  7. {
  8. public class NewClientDataQueryDto
  9. {
  10. /// <summary>
  11. /// 联系人
  12. /// </summary>
  13. public string Contact { get; set; }
  14. //地区
  15. public string Location { get; set; }
  16. //单位
  17. public string Client { get; set; }
  18. //负责人
  19. public int Userid { get; set; }
  20. //省域
  21. //单独负责的客户 (只看老张的)
  22. //权重
  23. public char Weight { get; set; }
  24. //客户级别(地市州)
  25. public int Lvlid { get; set; }
  26. //客户类别
  27. //业务分类
  28. public int Business { get; set; }
  29. }
  30. }