67 lines
1.2 KiB
C#
67 lines
1.2 KiB
C#
|
|
|
|
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
|
|
{
|
|
///<summary>
|
|
/// 系统阅片标准
|
|
///</summary>
|
|
[Table("ReadingQuestionCriterionSystem")]
|
|
public class ReadingQuestionCriterionSystem : Entity, IAuditAdd
|
|
{
|
|
/// <summary>
|
|
/// 标准
|
|
/// </summary>
|
|
public string CriterionName { get; set; }
|
|
|
|
/// <summary>
|
|
/// 是否启用
|
|
/// </summary>
|
|
public bool IsEnable { get; set; }
|
|
|
|
/// <summary>
|
|
/// 排序
|
|
/// </summary>
|
|
public int ShowOrder { get; set; }
|
|
|
|
/// <summary>
|
|
/// 是否完成配置
|
|
/// </summary>
|
|
public bool IsCompleteConfig { get; set; }
|
|
|
|
/// <summary>
|
|
/// 创建时间
|
|
/// </summary>
|
|
public DateTime CreateTime { get; set; }
|
|
|
|
/// <summary>
|
|
/// 确认时间
|
|
/// </summary>
|
|
public DateTime ConfirmTime { get; set; }
|
|
|
|
/// <summary>
|
|
/// 创建人
|
|
/// </summary>
|
|
public Guid CreateUserId { get; set; }
|
|
|
|
[JsonIgnore]
|
|
public List<ReadingQuestionSystem> ReadingQuestionSystemList { get; set; } = new List<ReadingQuestionSystem>();
|
|
|
|
[JsonIgnore]
|
|
[ForeignKey("CriterionId")]
|
|
public Dictionary Dictionary { get; set; }
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
}
|