25 lines
770 B
C#
25 lines
770 B
C#
using IRaCIS.Core.Domain.Share;
|
|
|
|
namespace IRaCIS.Core.Domain.Models;
|
|
|
|
[Table("ReadingSystemCriterionDictionary")]
|
|
public class ReadingSystemCriterionDictionary : BaseAddAuditEntity
|
|
{
|
|
#region µ¼º½ÊôÐÔ
|
|
|
|
[JsonIgnore]
|
|
[ForeignKey("DictionaryId")]
|
|
public Dictionary Dictionary { get; set; }
|
|
#endregion
|
|
public Guid CriterionId { get; set; }
|
|
public Guid DictionaryId { get; set; }
|
|
public bool IsSystemCriterion { get; set; } = false;
|
|
|
|
public string ParentCode { get; set; } = string.Empty;
|
|
public bool IsBaseLineUse { get; set; } = false;
|
|
public bool IsFollowVisitUse { get; set; } = false;
|
|
|
|
[Comment("±ê×¼×Öµä·Ö×é")]
|
|
public CrterionDictionaryGroup CrterionDictionaryGroup { get; set; } = CrterionDictionaryGroup.General;
|
|
}
|