Merge branch 'Test_HIR_Net8' of https://gitea.frp.extimaging.com/XCKJ/irc-netcore-api into Test_HIR_Net8
continuous-integration/drone/push Build is passing Details

Test_HIR_Net8
hang 2025-08-12 15:03:41 +08:00
commit 7f6222a0bc
6 changed files with 2192 additions and 1 deletions

View File

@ -823,6 +823,8 @@ namespace IRaCIS.Core.Application.Service.Reading.Dto
public class CopyTableAnswerRowInfo : ReadingTableAnswerRowInfoBase public class CopyTableAnswerRowInfo : ReadingTableAnswerRowInfoBase
{ {
public Guid OriginalId { get; set; } public Guid OriginalId { get; set; }
public LesionType? LesionType { get; set; }
} }
public class CopyTableAnswerDto public class CopyTableAnswerDto
{ {

View File

@ -161,7 +161,8 @@ namespace IRaCIS.Core.Application.Service
CreateMap<CopyTableAnswerRowInfo, ReadingTableAnswerRowInfo>().ForMember(dest => dest.CreateUser, opt => opt.Ignore()); CreateMap<CopyTableAnswerRowInfo, ReadingTableAnswerRowInfo>().ForMember(dest => dest.CreateUser, opt => opt.Ignore());
CreateMap<ReadingTableAnswerRowInfo, CopyTableAnswerRowInfo>() CreateMap<ReadingTableAnswerRowInfo, CopyTableAnswerRowInfo>()
.ForMember(d => d.OriginalId, u => u.MapFrom(s => s.Id)); .ForMember(d => d.OriginalId, u => u.MapFrom(s => s.Id))
.ForMember(d => d.LesionType, u => u.MapFrom(s => s.ReadingQuestionTrial.LesionType));
//.ForMember(dest => dest.Instance, opt => opt.Ignore()) //.ForMember(dest => dest.Instance, opt => opt.Ignore())
//.ForMember(dest => dest.ReadingQuestionTrial, opt => opt.Ignore()); //.ForMember(dest => dest.ReadingQuestionTrial, opt => opt.Ignore());

View File

@ -106,6 +106,22 @@ namespace IRaCIS.Core.Application.ViewModel
} }
public class TestOncologyDto
{
public Guid Id { get; set; }
public string TargetLesion { get; set; }
public string NonTargetLesions { get; set; }
public string NewLesion { get; set; }
public string OverallEfficacy { get; set; }
}
public class AddTaskLesionAnswerFromLastTaskOutDto public class AddTaskLesionAnswerFromLastTaskOutDto
{ {
public bool IsBaseLine { get; set; } public bool IsBaseLine { get; set; }

File diff suppressed because it is too large Load Diff

View File

@ -2173,6 +2173,12 @@ public enum SUVChangeVSBaseline
/// </summary> /// </summary>
SUVmax = 20, SUVmax = 20,
/// <summary>
/// 典型肝内病灶
/// </summary>
TypicalIntrahepaticLesion = 21,
/// <summary> /// <summary>
/// 外弹力膜面积 /// 外弹力膜面积
/// </summary> /// </summary>

View File

@ -49,5 +49,10 @@
/// 字符串形式 标识时区 /// 字符串形式 标识时区
/// </summary> /// </summary>
string TimeZoneId { get; } string TimeZoneId { get; }
/// <summary>
/// 稽查额外字符串
/// </summary>
string AuditIdentification { get; set; }
} }
} }