MarketingSalesView.cs 1017 B

123456789101112131415161718192021222324252627282930313233343536
  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 DateTime VisitDate { get; set; }
  18. public DateTime VisitEndDate { get; set; }
  19. public DateTime CollectionDays { get; set; }
  20. public string GroupPickupUser { get; set; }
  21. }
  22. public class MarketingSalesGroupStatisticsView {
  23. public string Name { get; set; }
  24. public int Count { get; set; }
  25. }
  26. public class MarketingSalesOrderRankingView {
  27. public int RowNumber { get; set; }
  28. public string UserName { get; set; }
  29. public int Count { get; set; }
  30. }
  31. }