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.

38 lines
767 B
C#

using POSV.Entity.Report;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace POSV.Entity.ReportPrint
{
[Serializable]
public class PrintTimeSummaryTicket
{
public PrintTimeSummaryTicket()
{
}
public string StoreName { get; set; }
public string StoreNo { get; set; }
public string WorkerNo { get; set; }
public string WorkerName { get; set; }
public string PrintTime { get; set; }
public string StartTime { get; set; }
public string EndTime { get; set; }
public string TotalCount { get; set; }
public string TotalMoney { get; set; }
public List<TimeSummaryTicket> Items { get; set; }
}
}