Uat_Study
parent
fc6154a04c
commit
10a5cdca85
|
@ -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();
|
||||
}
|
||||
|
||||
|
||||
|
||||
|
||||
}
|
||||
}
|
||||
|
|
|
@ -271,6 +271,29 @@ namespace IRaCIS.Core.Domain.Share
|
|||
|
||||
}
|
||||
|
||||
|
||||
/// <summary>
|
||||
/// 是否关联
|
||||
/// </summary>
|
||||
public enum IsDepend
|
||||
{
|
||||
/// <summary>
|
||||
/// 是
|
||||
/// </summary>
|
||||
Yes = 0,
|
||||
|
||||
/// <summary>
|
||||
/// 依赖父问题
|
||||
/// </summary>
|
||||
Rely = 1,
|
||||
|
||||
/// <summary>
|
||||
/// 否
|
||||
/// </summary>
|
||||
No = 2,
|
||||
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// 是否显示问题
|
||||
/// </summary>
|
||||
|
|
|
@ -108,10 +108,15 @@ namespace IRaCIS.Core.Domain.Models
|
|||
|
||||
|
||||
/// <summary>
|
||||
/// 依赖父问题
|
||||
/// 关联父问题
|
||||
/// </summary>
|
||||
public Guid? DependParentId { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 是否关联
|
||||
/// </summary>
|
||||
public IsDepend IsDepend { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 表格问题类型
|
||||
/// </summary>
|
||||
|
|
Loading…
Reference in New Issue