using IRaCIS.Core.Domain.Share;
namespace IRaCIS.Core.Domain.Models;
[Comment("系统标准阅片关键点文件")]
[Table("SystemCriterionKeyFile")]
public class SystemCriterionKeyFile : BaseAddAuditEntity
{
///
/// 系统标准Id
///
public Guid SystemCriterionId { get; set; }
///
/// 问价名称
///
public string FileName { get; set; } = string.Empty;
///
/// 文件路径
///
public string FilePath { get; set; } = string.Empty;
}