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

Uat_IRC_Net8
he 2025-07-25 15:28:30 +08:00
commit 5c668ee733
6 changed files with 19891 additions and 3 deletions

View File

@ -957,6 +957,16 @@
<returns></returns> <returns></returns>
<exception cref="T:System.Exception"></exception> <exception cref="T:System.Exception"></exception>
</member> </member>
<member name="M:IRaCIS.Core.Application.Service.Common.ExcelExportService.GetTrialQCQuestionAnserList_Export(System.Guid,IRaCIS.Core.Infra.EFCore.IRepository{IRaCIS.Core.Domain.Models.TrialQCQuestionAnswer},IRaCIS.Core.Infra.EFCore.IRepository{IRaCIS.Core.Domain.Models.Trial},IRaCIS.Core.Infra.EFCore.IRepository{IRaCIS.Core.Domain.Models.UserRole},IRaCIS.Core.Infra.EFCore.IRepository{IRaCIS.Core.Domain.Models.TrialQCQuestion},IRaCIS.Application.Interfaces.IDictionaryService)">
<summary>
质控问题答案导出
</summary>
<param name="trialId"></param>
<param name="_trialQCQuestionAnswerRepository"></param>
<param name="_trialRepository"></param>
<param name="_dictionaryService"></param>
<returns></returns>
</member>
<member name="T:IRaCIS.Core.Application.Service.ExploreRecommendService"> <member name="T:IRaCIS.Core.Application.Service.ExploreRecommendService">
<summary> <summary>
ExploreRecommendService ExploreRecommendService
@ -2152,7 +2162,7 @@
<summary> 指定资源Id渲染Dicom检查的Jpeg预览图像 </summary> <summary> 指定资源Id渲染Dicom检查的Jpeg预览图像 </summary>
<param name="studyId"> Dicom检查的Id </param> <param name="studyId"> Dicom检查的Id </param>
</member> </member>
<member name="M:IRaCIS.Core.Application.Service.ImageAndDoc.StudyService.GetAllRelationStudyList(System.Guid)"> <member name="M:IRaCIS.Core.Application.Service.ImageAndDoc.StudyService.GetAllRelationStudyList(System.Guid,System.Nullable{System.Boolean})">
<summary> <summary>
获取某个检查的关联检查列表(该受试者在这个想项目下的所有检查) 获取某个检查的关联检查列表(该受试者在这个想项目下的所有检查)
点击检查检查列表中的一个检查获取对应的序列列表(调用之前的接口:/series/list/根据StudyId获取访视的序列列表 点击检查检查列表中的一个检查获取对应的序列列表(调用之前的接口:/series/list/根据StudyId获取访视的序列列表
@ -17961,7 +17971,7 @@
<param name="trialId"></param> <param name="trialId"></param>
<returns></returns>SeriesCount <returns></returns>SeriesCount
</member> </member>
<member name="M:IRaCIS.Core.Application.Image.QA.QCOperationService.ReplaceQCTaskActionUser(System.Guid,System.Guid)"> <member name="M:IRaCIS.Core.Application.Image.QA.QCOperationService.ReplaceQCTaskActionUser(System.Guid,System.Guid,System.Nullable{System.Guid})">
<summary>替换当前领取人 </summary> <summary>替换当前领取人 </summary>
</member> </member>
<member name="M:IRaCIS.Core.Application.Image.QA.QCOperationService.CollectNextIQCQuality(IRaCIS.Core.Application.Contracts.GetNextIQCQualityInDto)"> <member name="M:IRaCIS.Core.Application.Image.QA.QCOperationService.CollectNextIQCQuality(IRaCIS.Core.Application.Contracts.GetNextIQCQualityInDto)">

View File

@ -329,7 +329,7 @@ namespace IRaCIS.Core.Application.ViewModel
public bool IsConfig { get; set; } public bool IsConfig { get; set; }
public string DictionaryKey { get; set; } = string.Empty; public string DictionaryKey { get; set; } = string.Empty;
public bool IsBeforeModifyView { get; set; } = true;
//byzhouahng //byzhouahng

View File

@ -122,6 +122,7 @@ public class FrontAuditConfig : BaseFullAuditEntity
/// </summary> /// </summary>
public bool IsDefaultChoice { get; set; } = false; public bool IsDefaultChoice { get; set; } = false;
public bool IsBeforeModifyView { get; set; } = true;
} }
/// <summary> /// <summary>

File diff suppressed because it is too large Load Diff

View File

@ -0,0 +1,29 @@
using Microsoft.EntityFrameworkCore.Migrations;
#nullable disable
namespace IRaCIS.Core.Infra.EFCore.Migrations
{
/// <inheritdoc />
public partial class auditInspection : Migration
{
/// <inheritdoc />
protected override void Up(MigrationBuilder migrationBuilder)
{
migrationBuilder.AddColumn<bool>(
name: "IsBeforeModifyView",
table: "FrontAuditConfig",
type: "bit",
nullable: false,
defaultValue: false);
}
/// <inheritdoc />
protected override void Down(MigrationBuilder migrationBuilder)
{
migrationBuilder.DropColumn(
name: "IsBeforeModifyView",
table: "FrontAuditConfig");
}
}
}

View File

@ -2647,6 +2647,9 @@ namespace IRaCIS.Core.Infra.EFCore.Migrations
.HasColumnType("nvarchar(400)") .HasColumnType("nvarchar(400)")
.HasComment("接口名"); .HasComment("接口名");
b.Property<bool>("IsBeforeModifyView")
.HasColumnType("bit");
b.Property<bool>("IsConfig") b.Property<bool>("IsConfig")
.HasColumnType("bit") .HasColumnType("bit")
.HasComment("未知是否有用-废弃核查"); .HasComment("未知是否有用-废弃核查");