添加项目文件。
This commit is contained in:
@@ -0,0 +1,37 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.ComponentModel.DataAnnotations;
|
||||
using System.ComponentModel.DataAnnotations.Schema;
|
||||
|
||||
namespace IRaCIS.Core.Domain.Models
|
||||
{
|
||||
[Table("TrialStatus")]
|
||||
public partial class TrialStatusDetail : Entity, IAuditAdd
|
||||
{
|
||||
public virtual ICollection<EnrollDetail> IntoGroupDetails { get; set; }
|
||||
public TrialStatusDetail()
|
||||
{
|
||||
IntoGroupDetails = new HashSet<EnrollDetail>();
|
||||
}
|
||||
|
||||
public Trial Trial { get; set; }
|
||||
|
||||
[ForeignKey("Trial")]
|
||||
public Guid TrialId { get; set; }
|
||||
|
||||
|
||||
|
||||
public int TrialStatus { get; set; }
|
||||
|
||||
[StringLength(100)]
|
||||
public string Memo { get; set; } = string.Empty;
|
||||
|
||||
public int OptUserType { get; set; }
|
||||
|
||||
public Guid CreateUserId { get; set; }
|
||||
|
||||
public DateTime CreateTime { get; set; }
|
||||
|
||||
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user