18 lines
423 B
C#
18 lines
423 B
C#
namespace IRaCIS.Core.Domain.Models;
|
|
|
|
[Comment("项目 - 入组流程记录")]
|
|
[Table("TrialStatus")]
|
|
public partial class TrialStatusDetail : BaseAddAuditEntity
|
|
{
|
|
#region 导航属性
|
|
[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; }
|
|
}
|