using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Shentun.Peis.PlugIns.Extensions.PatientRegisters.Qztl { public class QztlImportDataEntity { public Guid Id { get; set; } public string Data { get; set; } public char DataType { get; set; } public char IsComplete { get; set; } public DateTime CreationTime { get; set; } } }