using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace GasolineBlend.Entity { public class ReportFalseData { public string SubjectName { get; set; } public string ReportType { get; set; } public string Period { get; set; } public DateTime ReportTime { get; set; } public string ReportDate { get { return ReportTime.ToString("yyyy-MM-dd"); } } public string FromType { get; set; } } }