You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
33 lines
988 B
33 lines
988 B
using System;
|
|
using PEIS.Utils;
|
|
|
|
namespace PEIS.Entity
|
|
{
|
|
public partial class Sign : ObjectData
|
|
{
|
|
public override String TableName => "Dict_Sign";
|
|
|
|
public Int64? RID { get; set; }
|
|
public String SignName { get; set; }
|
|
public String SpellCode { get; set; }
|
|
public String Description { get; set; }
|
|
public String SevereLevel { get; set; }
|
|
public Boolean IsDefault { get; set; }
|
|
public Boolean IsSummary { get; set; }
|
|
public String Group1 { get; set; }
|
|
public String Group2 { get; set; }
|
|
public Int32 Seq { get; set; }
|
|
public Int64 CID { get; set; }
|
|
|
|
/// <summary>
|
|
/// 包含匹配文本(UnusualFlag包含此文本时匹配,仅检验科使用)
|
|
/// </summary>
|
|
public String MatchText { get; set; }
|
|
|
|
[RefFlag(true)]
|
|
public Boolean IsSelected { get; set; }
|
|
|
|
[RefFlag(true)]
|
|
public String TextResult { get; set; }
|
|
}
|
|
} |