26 lines
776 B
C#
26 lines
776 B
C#
namespace IRaCIS.Core.Domain.Models
|
|
{
|
|
///<summary>
|
|
///SystemAnonymization
|
|
///</summary>
|
|
[Table("SystemAnonymization")]
|
|
public class SystemAnonymization : BaseFullAuditEntity
|
|
{
|
|
#region 导航属性
|
|
|
|
#endregion
|
|
public string Group { get; set; } = String.Empty;
|
|
|
|
public string Element { get; set; } = String.Empty;
|
|
public string TagDescription { get; set; } = String.Empty;
|
|
public string TagDescriptionCN { get; set; } = string.Empty;
|
|
public string ReplaceValue { get; set; } = String.Empty;
|
|
public string ValueRepresentation { get; set; } = String.Empty;
|
|
public bool IsAdd { get; set; }
|
|
|
|
public bool IsEnable { get; set; }
|
|
public bool IsFixed { get; set; }
|
|
}
|
|
|
|
}
|