@@ -1,31 +1,25 @@
|
||||
using Microsoft.EntityFrameworkCore;
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.ComponentModel.DataAnnotations;
|
||||
using System.ComponentModel.DataAnnotations.Schema;
|
||||
|
||||
namespace IRaCIS.Core.Domain.Models;
|
||||
|
||||
[Comment("项目 - 入组流程记录")]
|
||||
[Table("TrialStatus")]
|
||||
public partial class TrialStatusDetail : BaseAddAuditEntity
|
||||
namespace IRaCIS.Core.Domain.Models
|
||||
{
|
||||
#region 导航属性
|
||||
[JsonIgnore]
|
||||
public List<EnrollDetail> IntoGroupDetails { get; set; }
|
||||
[Table("TrialStatus")]
|
||||
public partial class TrialStatusDetail : BaseAddAuditEntity
|
||||
{
|
||||
#region µ¼º½ÊôÐÔ
|
||||
[JsonIgnore]
|
||||
public List<EnrollDetail> IntoGroupDetails { get; set; }
|
||||
|
||||
[JsonIgnore]
|
||||
public Trial Trial { get; set; }
|
||||
#endregion
|
||||
[JsonIgnore]
|
||||
public Trial Trial { get; set; }
|
||||
#endregion
|
||||
|
||||
|
||||
public Guid TrialId { get; set; }
|
||||
public int TrialStatus { get; set; }
|
||||
[StringLength(400)]
|
||||
public string Memo { get; set; } = string.Empty;
|
||||
public Guid TrialId { get; set; }
|
||||
public int TrialStatus { get; set; }
|
||||
|
||||
public int OptUserType { get; set; }
|
||||
public string Memo { get; set; } = string.Empty;
|
||||
|
||||
public int OptUserType { get; set; }
|
||||
|
||||
|
||||
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user