You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

36 lines
821 B
C#

9 months ago
using Newtonsoft.Json;
using NPoco;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace POSV.Entity.Report
{
[Serializable]
public class TimeSummaryTicket
{
public TimeSummaryTicket()
{
}
[JsonProperty(PropertyName = "dateHour")]
[Column("dateHour")]
public string DateHour { get; set; }
[JsonProperty(PropertyName = "sumCount")]
[Column("sumCount")]
public decimal SumCount { get; set; }
[JsonProperty(PropertyName = "sumAmount")]
[Column("sumAmount")]
public decimal SumAmount { get; set; }
[JsonProperty(PropertyName = "sumReceivableAmount")]
[Column("sumReceivableAmount")]
public decimal SumReceivableAmount { get; set; }
}
}