using System; using System.Collections.Generic; using System.Linq; using System.Text; using PalGain.Core; namespace sbcLabSystem.Data.Domain.Backstage { public class ApprovalInfo : BaseEntity { public string FieldName { get; set; } public string FieldPatient { get; set; } public string FieldValue { get; set; } public string FieldDescription { get; set; } public double Score { get; set; } public int QCDistributionID { get; set; } public bool IsComplex { get; set; } public string ElementNameInHtml { get; set; } } }