using System; using System.Collections.Generic; using Volo.Abp.Domain.Entities; using Volo.Abp.Domain.Entities.Auditing; namespace Shentun.WebPeis.Models; /// /// 组合项目 /// public partial class Asbitem:AuditedEntity, IHasConcurrencyStamp { /// /// 编号 /// public Guid AsbitemId { get; set; } /// /// 名称 /// public string AsbitemName { get; set; } = null!; /// /// 简称 /// public string? ShortName { get; set; } /// /// 适用性别,M-男,F-女,A-全部 /// public char ForSexId { get; set; } /// /// 项目类别 /// public Guid ItemTypeId { get; set; } /// /// 价格 /// public decimal Price { get; set; } /// /// 仪器类别 /// public Guid? DeviceTypeId { get; set; } /// /// 餐前项目 /// public char IsBeforeEat { get; set; } /// /// 临床意义 /// public string? ClinicalMeaning { get; set; } /// /// 默认结果 /// public string? DefaultResult { get; set; } /// /// 体检报告图片旋转90° /// public char IsPictureRotate { get; set; } /// /// 是检查项目 /// public char IsCheck { get; set; } /// /// 是启用 /// public char IsActive { get; set; } /// /// 警告事项 /// public string? Warn { get; set; } /// /// 备孕期间禁止检查 /// public char IsDisablePreparePregnancy { get; set; } /// /// 怀孕期间禁止检查 /// public char IsDisablePregnancy { get; set; } public Guid? DiseaseScreeningTypeId { get; set; } public string? SimpleCode { get; set; } public int DisplayOrder { get; set; } public string? ConcurrencyStamp { get; set; } public char? IsWebAppoint { get; set; } public virtual ICollection AsbitemDetails { get; set; } = new List(); public virtual ICollection ChargeAsbitems { get; set; } = new List(); public virtual ICollection CustomerOrgGroupDetails { get; set; } = new List(); public virtual ItemType ItemType { get; set; } = null!; public virtual ICollection MedicalPackageDetails { get; set; } = new List(); public override object?[] GetKeys() { return [AsbitemId]; } }