MarketingSalesView.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.ViewModels.Statistics
  7. {
  8. public class MarketingSalesView
  9. {
  10. }
  11. public class MarketingSalesGroupList {
  12. public int RowNumber { get; set; }
  13. public int Id { get; set; }
  14. public string TeamName { get; set; }
  15. public string ClientUnit { get; set; }
  16. public string ClientName { get; set; }
  17. public int VisitPNumber { get; set; }
  18. public DateTime VisitDate { get; set; }
  19. public DateTime VisitEndDate { get; set; }
  20. public DateTime CollectionDays { get; set; }
  21. public string GroupPickupUser { get; set; }
  22. }
  23. public class MarketingSalesGroupStatisticsView {
  24. public string Name { get; set; }
  25. public int Count { get; set; }
  26. }
  27. public class MarketingSalesOrderRankingView {
  28. public int RowNumber { get; set; }
  29. public string UserName { get; set; }
  30. public int Count { get; set; }
  31. }
  32. }