26 lines
405 B
C#
26 lines
405 B
C#
|
|
|
|
|
|
namespace IRaCIS.Core.Domain.Models
|
|
{
|
|
///<summary>
|
|
///SystemCriterionDictionaryCode
|
|
///</summary>
|
|
[Table("SystemCriterionDictionaryCode")]
|
|
public class SystemCriterionDictionaryCode : BaseAddAuditEntity
|
|
{
|
|
#region 导航属性
|
|
|
|
#endregion
|
|
|
|
public Guid SystemCriterionId { get; set; }
|
|
|
|
public string Code { get; set; } = string.Empty;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|