31 lines
679 B
C#
31 lines
679 B
C#
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 : BaseAddAuditEntity
|
|
{
|
|
#region µ¼º½ÊôÐÔ
|
|
[JsonIgnore]
|
|
public List<EnrollDetail> IntoGroupDetails { get; set; }
|
|
|
|
[JsonIgnore]
|
|
public Trial Trial { get; set; }
|
|
#endregion
|
|
|
|
|
|
public Guid TrialId { get; set; }
|
|
public int TrialStatus { get; set; }
|
|
|
|
public string Memo { get; set; } = string.Empty;
|
|
|
|
public int OptUserType { get; set; }
|
|
|
|
|
|
|
|
}
|
|
}
|