This commit is contained in:
he
2022-08-15 13:56:16 +08:00
parent fc6154a04c
commit 10a5cdca85
4 changed files with 50 additions and 1 deletions
@@ -41,8 +41,21 @@ namespace IRaCIS.Core.Application.ViewModel
/// 类型枚举
/// </summary>
public OrganType OrganType { get; set; }
/// <summary>
/// 是否关联
/// </summary>
public IsDepend IsDepend { get; set; }
}
public class GetTrialSelectOrganListInDto
{
public Guid TrialId { get; set; }
/// <summary>
/// 类型枚举
/// </summary>
public OrganType? OrganType { get; set; }
}
public class GetTrialOrganListInDto
{
@@ -108,6 +121,11 @@ namespace IRaCIS.Core.Application.ViewModel
/// </summary>
public string Remark { get; set; }
/// <summary>
/// 是否关联
/// </summary>
public IsDepend IsDepend { get; set; }
public DateTime CreateTime { get; set; }
public Guid CreateUserId { get; set; }
}
@@ -169,5 +169,8 @@ namespace IRaCIS.Core.Application.Service
return await organInfoQueryable.ToListAsync();
}
}
}