using POSV.Entity.Report; using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace POSV.Entity.ReportPrint { [Serializable] public class PrintSalesSummaryMake { public PrintSalesSummaryMake() { } 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 Items { get; set; } } }