using System;
using System.Collections.Generic;
using System.ComponentModel.DataAnnotations;
using System.ComponentModel.DataAnnotations.Schema;
namespace IRaCIS.Core.Domain.Models
{
///
/// 一致性核查文件
///
[Table("InspectionFile")]
public class InspectionFile : BaseAuditAddEntity
{
///
/// 文件名称
///
public string FileName { get; set; }
///
/// 相对路径
///
public string RelativePath { get; set; }
///
/// 项目ID
///
public Guid TrialId { get; set; }
[JsonIgnore]
///
/// 创建人
///
[ForeignKey("CreateUserId")]
public User User { get; set; }
}
}