Uat_Study
parent
324a5e43f5
commit
d79005242e
|
@ -1374,6 +1374,10 @@ namespace IRaCIS.Core.Application.Service.Reading.Dto
|
|||
|
||||
|
||||
|
||||
/// <summary>
|
||||
/// 字典code
|
||||
/// </summary>
|
||||
public string DictionaryCode { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 项目标准Id
|
||||
|
|
|
@ -109,6 +109,12 @@ namespace IRaCIS.Core.Application.Service.Reading.Dto
|
|||
public class ReadingTableQuestionTrialAddOrEdit
|
||||
{
|
||||
public Guid? Id { get; set; }
|
||||
|
||||
|
||||
/// <summary>
|
||||
/// 字典code
|
||||
/// </summary>
|
||||
public string DictionaryCode { get; set; } = string.Empty;
|
||||
public Guid ReadingQuestionId { get; set; }
|
||||
public string Type { get; set; } = string.Empty;
|
||||
public Guid? ParentId { get; set; }
|
||||
|
@ -157,6 +163,11 @@ namespace IRaCIS.Core.Application.Service.Reading.Dto
|
|||
public Guid? Id { get; set; }
|
||||
public Guid ReadingQuestionId { get; set; }
|
||||
public string Type { get; set; } = string.Empty;
|
||||
|
||||
/// <summary>
|
||||
/// 字典code
|
||||
/// </summary>
|
||||
public string DictionaryCode { get; set; } = string.Empty;
|
||||
public Guid? ParentId { get; set; }
|
||||
public string ParentTriggerValue { get; set; } = string.Empty;
|
||||
public string QuestionName { get; set; } = string.Empty;
|
||||
|
|
|
@ -606,6 +606,7 @@ namespace IRaCIS.Application.Services
|
|||
ShowOrder = x.ShowOrder,
|
||||
GroupName = string.Empty,
|
||||
Id = x.Id,
|
||||
DictionaryCode=x.DictionaryCode,
|
||||
Type = x.Type,
|
||||
TableQuestionType = x.TableQuestionType,
|
||||
DependParentId = x.DependParentId,
|
||||
|
|
|
@ -241,8 +241,6 @@ namespace IRaCIS.Application.Services
|
|||
[HttpPost]
|
||||
public async Task<List<ReadingTableQuestionSystemView>> GetReadingTableQuestionSystemList(ReadingTableQuestionSystemQuery inDto)
|
||||
{
|
||||
|
||||
|
||||
var readingTableQuestionSystemQueryable = _readingTableQuestionSystemRepository
|
||||
.WhereIf(inDto.TableQuestionType!=null,x=>x.TableQuestionType ==inDto.TableQuestionType!)
|
||||
.Where(x=>x.ReadingQuestionId==inDto.ReadingQuestionId).ProjectTo<ReadingTableQuestionSystemView>(_mapper.ConfigurationProvider);
|
||||
|
|
|
@ -16,9 +16,90 @@ namespace IRaCIS.Core.Domain.Share
|
|||
public static readonly string Group = "group";
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// 非把病灶状态
|
||||
/// </summary>
|
||||
public enum NoTargetState
|
||||
{
|
||||
/// <summary>
|
||||
/// 模块枚举
|
||||
/// 存在
|
||||
/// </summary>
|
||||
Exist = 0,
|
||||
|
||||
/// <summary>
|
||||
/// 显著增大
|
||||
/// </summary>
|
||||
Increase = 1,
|
||||
|
||||
/// <summary>
|
||||
/// 无法评估
|
||||
/// </summary>
|
||||
UnableEvaluate = 2,
|
||||
|
||||
/// <summary>
|
||||
/// 消失
|
||||
/// </summary>
|
||||
Loss = 3
|
||||
}
|
||||
|
||||
|
||||
/// <summary>
|
||||
/// 新病灶状态
|
||||
/// </summary>
|
||||
public enum NewLesionState
|
||||
{
|
||||
|
||||
/// <summary>
|
||||
/// 存在
|
||||
/// </summary>
|
||||
Exist = 0,
|
||||
|
||||
/// <summary>
|
||||
/// 疑似
|
||||
/// </summary>
|
||||
Suspected = 1,
|
||||
|
||||
/// <summary>
|
||||
/// 无法评估
|
||||
/// </summary>
|
||||
UnableEvaluate = 2,
|
||||
|
||||
/// <summary>
|
||||
/// 消失
|
||||
/// </summary>
|
||||
Loss = 3
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// 靶病灶状态
|
||||
/// </summary>
|
||||
public enum TargetState
|
||||
{
|
||||
|
||||
/// <summary>
|
||||
/// 存在
|
||||
/// </summary>
|
||||
Exist = 0,
|
||||
|
||||
/// <summary>
|
||||
/// 太小
|
||||
/// </summary>
|
||||
TooSmall = 1,
|
||||
|
||||
/// <summary>
|
||||
/// 无法评估
|
||||
/// </summary>
|
||||
UnableEvaluate = 2,
|
||||
|
||||
/// <summary>
|
||||
/// 消失
|
||||
/// </summary>
|
||||
Loss = 3
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// 模块枚举
|
||||
/// </summary>
|
||||
public enum ModuleTypeEnum
|
||||
{
|
||||
/// <summary>
|
||||
|
|
|
@ -132,6 +132,11 @@ namespace IRaCIS.Core.Domain.Models
|
|||
/// </summary>
|
||||
public QuestionMark? QuestionMark { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 字典code
|
||||
/// </summary>
|
||||
public string DictionaryCode { get; set; }
|
||||
|
||||
[ForeignKey("DependParentId")]
|
||||
public ReadingTableQuestionSystem DependParentQuestion { get; set; }
|
||||
}
|
||||
|
|
|
@ -136,7 +136,13 @@ namespace IRaCIS.Core.Domain.Models
|
|||
/// </summary>
|
||||
public QuestionMark? QuestionMark { get; set; }
|
||||
|
||||
[JsonIgnore]
|
||||
|
||||
/// <summary>
|
||||
/// 字典code
|
||||
/// </summary>
|
||||
public string DictionaryCode { get; set; }
|
||||
|
||||
[JsonIgnore]
|
||||
[ForeignKey("DependParentId")]
|
||||
public ReadingTableQuestionTrial DependParentQuestion { get; set; }
|
||||
|
||||
|
|
Loading…
Reference in New Issue