添加字段
continuous-integration/drone/push Build is running
Details
continuous-integration/drone/push Build is running
Details
parent
3a918f1aa5
commit
04815b9217
|
|
@ -2992,6 +2992,13 @@
|
|||
<param name="command"></param>
|
||||
<returns></returns>
|
||||
</member>
|
||||
<member name="M:IRaCIS.Core.Application.Service.ImageAndDoc.StudyService.AmendmentPatientInfo(IRaCIS.Core.Application.Contracts.EditPatientInfoCommand)">
|
||||
<summary>
|
||||
修正患者基本信息
|
||||
</summary>
|
||||
<param name="command"></param>
|
||||
<returns></returns>
|
||||
</member>
|
||||
<member name="M:IRaCIS.Core.Application.Service.ImageAndDoc.StudyService.Preview(System.Guid)">
|
||||
<summary> 指定资源Id,渲染Dicom检查的Jpeg预览图像 </summary>
|
||||
<param name="studyId"> Dicom检查的Id </param>
|
||||
|
|
@ -18096,6 +18103,11 @@
|
|||
是否保存
|
||||
</summary>
|
||||
</member>
|
||||
<member name="P:IRaCIS.Core.Application.ViewModel.SegmentBindingView.IsLock">
|
||||
<summary>
|
||||
是否锁定
|
||||
</summary>
|
||||
</member>
|
||||
<member name="P:IRaCIS.Core.Application.ViewModel.SegmentBindingView.SegmentationName">
|
||||
<summary>
|
||||
分割分组名称
|
||||
|
|
@ -18489,6 +18501,11 @@
|
|||
成像 / 采集时间
|
||||
</summary>
|
||||
</member>
|
||||
<member name="P:IRaCIS.Core.Application.Contracts.EditPatientInfoCommand.Reason">
|
||||
<summary>
|
||||
修改原因
|
||||
</summary>
|
||||
</member>
|
||||
<member name="P:IRaCIS.Core.Application.Contracts.PatientInfoDto.PatientSex">
|
||||
<summary>
|
||||
性别
|
||||
|
|
|
|||
|
|
@ -226,6 +226,11 @@ namespace IRaCIS.Core.Application.Contracts
|
|||
/// 成像 / 采集时间
|
||||
/// </summary>
|
||||
public string AcquisitionTime { get; set; } = null!;
|
||||
|
||||
/// <summary>
|
||||
/// 修改原因
|
||||
/// </summary>
|
||||
public string Reason { get; set; } = null!;
|
||||
}
|
||||
|
||||
public class GetPatientInfoInDto
|
||||
|
|
|
|||
|
|
@ -270,6 +270,7 @@ namespace IRaCIS.Core.Application.Service.ImageAndDoc
|
|||
RadionuclideHalfLife = command.RadionuclideHalfLife,
|
||||
RadiopharmaceuticalStartTime = command.RadiopharmaceuticalStartTime,
|
||||
AcquisitionTime = command.AcquisitionTime,
|
||||
Reason = command.Reason,
|
||||
});
|
||||
await _dicomStudyRepository.SaveChangesAsync();
|
||||
|
||||
|
|
|
|||
|
|
@ -162,6 +162,11 @@ public class DicomStudy : BaseFullDeleteAuditEntity, IEntitySeqId
|
|||
/// </summary>
|
||||
public string AcquisitionTime { get; set; } = null!;
|
||||
|
||||
/// <summary>
|
||||
/// 修改原因
|
||||
/// </summary>
|
||||
public string Reason { get; set; } = null!;
|
||||
|
||||
|
||||
#endregion
|
||||
}
|
||||
|
|
|
|||
22137
IRaCIS.Core.Infra.EFCore/Migrations/20260429024701_PartialFrom1.Designer.cs
generated
Normal file
22137
IRaCIS.Core.Infra.EFCore/Migrations/20260429024701_PartialFrom1.Designer.cs
generated
Normal file
File diff suppressed because it is too large
Load Diff
|
|
@ -0,0 +1,30 @@
|
|||
using Microsoft.EntityFrameworkCore.Migrations;
|
||||
|
||||
#nullable disable
|
||||
|
||||
namespace IRaCIS.Core.Infra.EFCore.Migrations
|
||||
{
|
||||
/// <inheritdoc />
|
||||
public partial class PartialFrom1 : Migration
|
||||
{
|
||||
/// <inheritdoc />
|
||||
protected override void Up(MigrationBuilder migrationBuilder)
|
||||
{
|
||||
migrationBuilder.AddColumn<string>(
|
||||
name: "Reason",
|
||||
table: "DicomStudy",
|
||||
type: "nvarchar(400)",
|
||||
maxLength: 400,
|
||||
nullable: false,
|
||||
defaultValue: "");
|
||||
}
|
||||
|
||||
/// <inheritdoc />
|
||||
protected override void Down(MigrationBuilder migrationBuilder)
|
||||
{
|
||||
migrationBuilder.DropColumn(
|
||||
name: "Reason",
|
||||
table: "DicomStudy");
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
@ -1641,6 +1641,11 @@ namespace IRaCIS.Core.Infra.EFCore.Migrations
|
|||
.HasMaxLength(400)
|
||||
.HasColumnType("nvarchar(400)");
|
||||
|
||||
b.Property<string>("Reason")
|
||||
.IsRequired()
|
||||
.HasMaxLength(400)
|
||||
.HasColumnType("nvarchar(400)");
|
||||
|
||||
b.Property<Guid>("SeqId")
|
||||
.HasColumnType("uniqueidentifier")
|
||||
.HasComment("序列Id 避免内存移动");
|
||||
|
|
|
|||
Loading…
Reference in New Issue