46 lines
1.2 KiB
C#
46 lines
1.2 KiB
C#
|
|
//--------------------------------------------------------------------
|
|
// 此代码由T4模板自动生成 byzhouhang 20210918
|
|
// 生成时间 2023-01-09 14:34:17
|
|
// 对此文件的更改可能会导致不正确的行为,并且如果重新生成代码,这些更改将会丢失。
|
|
using IRaCIS.Core.Domain.Share;
|
|
namespace IRaCIS.Core.Domain.Models;
|
|
|
|
[Comment("医生 - 项目标准签名文档")]
|
|
[Table("DoctorCriterionFile")]
|
|
public class DoctorCriterionFile : BaseAddAuditEntity
|
|
{
|
|
#region 导航属性
|
|
[JsonIgnore]
|
|
[ForeignKey("DoctorId")]
|
|
public Doctor Doctor { get; set; }
|
|
#endregion
|
|
|
|
public string CriterionName { get; set; } = null!;
|
|
|
|
[Comment("标准类型")]
|
|
public CriterionType CriterionType { get; set; }
|
|
|
|
public Guid DoctorId { get; set; }
|
|
|
|
[StringLength(400)]
|
|
public string FileName { get; set; } = null!;
|
|
|
|
[StringLength(4000)]
|
|
public string FilePath { get; set; } = null!;
|
|
|
|
public CriterionFileType FileType { get; set; }
|
|
|
|
public bool IsEnable { get; set; }
|
|
|
|
public string Remark { get; set; } = null!;
|
|
|
|
public Guid? TrialId { get; set; }
|
|
|
|
public Guid? TrialReadingCriterionId { get; set; }
|
|
|
|
}
|
|
|
|
|
|
|