using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace ivf_tl_Entity.Entity.Mark { public class ReportMarkData { public string createTime { get; set; } public int deleted { get; set; } public int embryoCount { get; set; } public string endTime { get; set; } public string fertilizationType { get; set; } public long fertilizationTypeId { get; set; } public int freezing { get; set; } public string husband { get; set; } public string husbandBirth { get; set; } public long id { get; set; } public int invalid { get; set; } public string startTime { get; set; } public int state { get; set; } public int transplant { get; set; } public string wife { get; set; } public string wifeBirth { get; set; } public List freezingEmbryos { get; set; } = new List(); public List transplantEmbryos { get; set; } = new List(); } }