| 12345678910111213141516171819202122232425262728293031 |
- using System;
- using Quadarax.Foundation.Core.Data.Interface.Entity;
- namespace BO.AppServer.Metadata.Dto
- {
- public class StatisticsDto : IDto
- {
- public int Year { get; set; }
- public int Month { get; set; }
- public int Day { get; set; }
- public int UserNewCnt { get; set; }
- public int UserLoginCnt { get; set; }
- public int UserLoginB2bcnt { get; set; }
- public int UserTotalCnt { get; set; }
- public int WorspaceNewCnt { get; set; }
- public int WorspaceTotalCnt { get; set; }
- public int InvoiceNewCnt { get; set; }
- public int DocumentNewCnt { get; set; }
- public int DocumentFailedCnt { get; set; }
- public int DocumentDownloadedCnt { get; set; }
- public int DocumentTotalCnt { get; set; }
- public int DocumentProcessedCnt { get; set; }
- public int PSActiveCnt { get; set; }
- public decimal YieldWothSum { get; set; }
- public string YieldWothCurrency { get; set; }
- public decimal YieldWothTotalSum { get; set; }
- public string YieldWothTotalCurrency { get; set; }
- public DateTime Created { get; set; }
- public DateTime? Modified { get; set; }
- }
- }
|