MarketingSalesView.cs 1.1 KB

1234567891011121314151617181920212223242526272829303132333435363738
  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 decimal GroupSales { get; set; }
  21. public DateTime CollectionDays { get; set; }
  22. public string GroupPickupUser { get; set; }
  23. }
  24. public class MarketingSalesGroupStatisticsView {
  25. public string Name { get; set; }
  26. public int Count { get; set; }
  27. }
  28. public class MarketingSalesOrderRankingView {
  29. public int RowNumber { get; set; }
  30. public string UserName { get; set; }
  31. public int Count { get; set; }
  32. }
  33. }