using System;
using IRaCIS.Core.Domain.Share;
using System.ComponentModel.DataAnnotations;
using System.ComponentModel.DataAnnotations.Schema;
using System.Collections.Generic;
namespace IRaCIS.Core.Domain.Models
{
///
/// 系统阅片标准
///
[Table("ReadingQuestionCriterionSystem")]
public class ReadingQuestionCriterionSystem : Entity, IAuditAdd
{
///
/// 标准
///
public string CriterionName { get; set; }
///
/// 是否启用
///
public bool IsEnable { get; set; }
///
/// 排序
///
public int ShowOrder { get; set; }
///
/// 是否完成配置
///
public bool IsCompleteConfig { get; set; }
///
/// 创建时间
///
public DateTime CreateTime { get; set; }
///
/// 确认时间
///
public DateTime ConfirmTime { get; set; }
///
/// 描述
///
public string Description { get; set; }
///
/// 创建人
///
public Guid CreateUserId { get; set; }
///
/// 标准类型
///
public CriterionType CriterionType { get; set; }
///
/// 肿瘤学阅片
///
public bool IsOncologyReading { get; set; } = false;
///
/// eCRF报告是否显示在图像页面
///
public bool IseCRFShowInDicomReading { get; set; } = false;
///
/// 是否必须全局阅片
///
public bool IsMustGlobalReading { get; set; } = false;
[JsonIgnore]
public List ReadingQuestionSystemList { get; set; } = new List();
//[JsonIgnore]
//[ForeignKey("CriterionId")]
//public Dictionary Dictionary { get; set; }
}
}