irc-netcore-api/IRaCIS.Core.Domain/QC/ClinicalData/PreviousSurgery.cs

42 lines
1.0 KiB
C#

//--------------------------------------------------------------------
// 此代码由T4模板自动生成 byzhouhang 20210918
// 生成时间 2021-11-22 11:15:18
// 对此文件的更改可能会导致不正确的行为,并且如果重新生成代码,这些更改将会丢失。
using Microsoft.EntityFrameworkCore;
using System;
using System.ComponentModel.DataAnnotations;
using System.ComponentModel.DataAnnotations.Schema;
namespace IRaCIS.Core.Domain.Models;
[Comment("受试者访视 - 既往手术史")]
[Table("PreviousSurgery")]
public class PreviousSurgery : BaseAddAuditEntity
{
#region 导航属性
#endregion
[Comment(" 临床数据类型Id")]
public Guid ClinicalDataTrialSetId { get; set; }
public string FileName { get; set; } = null!;
public bool IsSubjectLevel { get; set; }
public string OperationName { get; set; } = null!;
public DateTime? OperationTime { get; set; }
public string Path { get; set; } = null!;
public Guid SubjectVisitId { get; set; }
}