Statistic.cs 1.2 KB

12345678910111213141516171819202122232425262728293031323334
  1. using System;
  2. using System.Collections.Generic;
  3. #nullable disable
  4. namespace BO.AppServer.Data.Entity
  5. {
  6. public partial class Statistic
  7. {
  8. // public long Id { get; set; }
  9. public int Year { get; set; }
  10. public int Month { get; set; }
  11. public int Day { get; set; }
  12. public int UserNewCnt { get; set; }
  13. public int UserLoginCnt { get; set; }
  14. public int UserLoginB2bcnt { get; set; }
  15. public int UserTotalCnt { get; set; }
  16. public int WorkspaceNewCnt { get; set; }
  17. public int WorkspaceTotalCnt { get; set; }
  18. public int InvoiceNewCnt { get; set; }
  19. public int DocumentNewCnt { get; set; }
  20. public int DocumentFailedCnt { get; set; }
  21. public int DocumentDownloadedCnt { get; set; }
  22. public int DocumentTotalCnt { get; set; }
  23. public int DocumentProcessedCnt { get; set; }
  24. public int PsactiveCnt { get; set; }
  25. public decimal YieldWorthSum { get; set; }
  26. public string YieldWorthCurrency { get; set; }
  27. public decimal YieldWorthTotalSum { get; set; }
  28. public string YieldWorthTotalCurrency { get; set; }
  29. public DateTime Created { get; set; }
  30. public DateTime? Modified { get; set; }
  31. }
  32. }