StatisticsDto.cs 1.2 KB

12345678910111213141516171819202122232425262728293031
  1. using System;
  2. using Quadarax.Foundation.Core.Data.Interface.Entity;
  3. namespace BO.AppServer.Metadata.Dto
  4. {
  5. public class StatisticsDto : IDto
  6. {
  7. public int Year { get; set; }
  8. public int Month { get; set; }
  9. public int Day { get; set; }
  10. public int UserNewCnt { get; set; }
  11. public int UserLoginCnt { get; set; }
  12. public int UserLoginB2bcnt { get; set; }
  13. public int UserTotalCnt { get; set; }
  14. public int WorspaceNewCnt { get; set; }
  15. public int WorspaceTotalCnt { get; set; }
  16. public int InvoiceNewCnt { get; set; }
  17. public int DocumentNewCnt { get; set; }
  18. public int DocumentFailedCnt { get; set; }
  19. public int DocumentDownloadedCnt { get; set; }
  20. public int DocumentTotalCnt { get; set; }
  21. public int DocumentProcessedCnt { get; set; }
  22. public int PSActiveCnt { get; set; }
  23. public decimal YieldWothSum { get; set; }
  24. public string YieldWothCurrency { get; set; }
  25. public decimal YieldWothTotalSum { get; set; }
  26. public string YieldWothTotalCurrency { get; set; }
  27. public DateTime Created { get; set; }
  28. public DateTime? Modified { get; set; }
  29. }
  30. }