新加阅片关键点

This commit is contained in:
he
2025-11-12 15:21:31 +08:00
parent 0e0ce59d74
commit 1d7b28e7f9
13 changed files with 458 additions and 1 deletions
@@ -446,6 +446,10 @@ namespace IRaCIS.Core.Application.Service.Reading.Dto
}
public class SetReadKeyFileInDto
{
public Guid TrialCriterionId { get; set; }
}
public class ViewStudyPartInDto
{
public Guid VisitTaskId { get; set; }
@@ -1947,6 +1951,8 @@ namespace IRaCIS.Core.Application.Service.Reading.Dto
/// </summary>
public bool IsConvertedTask { get; set; } = false;
public bool IsReadKeyFile { get; set; } = false;
}
public class GetReadingImgInDto
@@ -0,0 +1,42 @@
//--------------------------------------------------------------------
// 此代码由liquid模板自动生成 byzhouhang 20240909
// 生成时间 2025-11-12 06:46:41Z
// 对此文件的更改可能会导致不正确的行为,并且如果重新生成代码,这些更改将会丢失。
//--------------------------------------------------------------------
using System;
using IRaCIS.Core.Domain.Share;
using System.Collections.Generic;
namespace IRaCIS.Core.Application.Service.Reading.Dto;
public class SystemCriterionKeyFileView : SystemCriterionKeyFileAddOrEdit
{
public DateTime CreateTime { get; set; }
}
public class SystemCriterionKeyFileAddOrEdit
{
public Guid? Id { get; set; }
public string FileName { get; set; }
public string FilePath { get; set; }
public Guid SystemCriterionId { get; set; }
}
public class SystemCriterionKeyFileQuery:PageInput
{
public string? FileName { get; set; }
public string? FilePath { get; set; }
public Guid SystemCriterionId { get; set; }
}
@@ -0,0 +1,41 @@
//--------------------------------------------------------------------
// 此代码由liquid模板自动生成 byzhouhang 20240909
// 生成时间 2025-11-12 06:51:58Z
// 对此文件的更改可能会导致不正确的行为,并且如果重新生成代码,这些更改将会丢失。
//--------------------------------------------------------------------
using System;
using IRaCIS.Core.Domain.Share;
using System.Collections.Generic;
namespace IRaCIS.Core.Application.Service.Reading.Dto;
public class TrialCriterionKeyFileView : TrialCriterionKeyFileAddOrEdit
{
public DateTime CreateTime { get; set; }
}
public class TrialCriterionKeyFileAddOrEdit
{
public Guid? Id { get; set; }
public string FileName { get; set; }
public string FilePath { get; set; }
public Guid TrialCriterionId { get; set; }
}
public class TrialCriterionKeyFileQuery:PageInput
{
public string? FileName { get; set; }
public Guid TrialCriterionId { get; set; }
}