修改
This commit is contained in:
@@ -453,6 +453,8 @@ namespace IRaCIS.Core.Application.Service.Reading.Dto
|
|||||||
|
|
||||||
public string OrderMarkName { get; set; } = string.Empty;
|
public string OrderMarkName { get; set; } = string.Empty;
|
||||||
|
|
||||||
|
|
||||||
|
public int? NumberOfFrames { get; set; }
|
||||||
public Guid RowId { get; set; }
|
public Guid RowId { get; set; }
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
@@ -1234,6 +1236,8 @@ namespace IRaCIS.Core.Application.Service.Reading.Dto
|
|||||||
{
|
{
|
||||||
public Guid QuestionId { get; set; }
|
public Guid QuestionId { get; set; }
|
||||||
|
|
||||||
|
public int? NumberOfFrames { get; set; }
|
||||||
|
|
||||||
public decimal RowIndex { get; set; }
|
public decimal RowIndex { get; set; }
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
|
|||||||
@@ -1125,6 +1125,7 @@ namespace IRaCIS.Application.Services
|
|||||||
rowInfo.BlindName = inDto.BlindName;
|
rowInfo.BlindName = inDto.BlindName;
|
||||||
rowInfo.IsDicomReading = inDto.IsDicomReading;
|
rowInfo.IsDicomReading = inDto.IsDicomReading;
|
||||||
rowInfo.IsCurrentTaskAdd = isCurrentTaskAdd;
|
rowInfo.IsCurrentTaskAdd = isCurrentTaskAdd;
|
||||||
|
rowInfo.NumberOfFrames = inDto.NumberOfFrames;
|
||||||
rowInfo.FristAddTaskNum = inDto.FristAddTaskNum;
|
rowInfo.FristAddTaskNum = inDto.FristAddTaskNum;
|
||||||
rowInfo.RowIndex = inDto.RowIndex;
|
rowInfo.RowIndex = inDto.RowIndex;
|
||||||
rowInfo.InstanceId = inDto.InstanceId;
|
rowInfo.InstanceId = inDto.InstanceId;
|
||||||
|
|||||||
@@ -114,6 +114,9 @@ namespace IRaCIS.Core.Domain.Models
|
|||||||
//string UpdateUserName { get; set; }
|
//string UpdateUserName { get; set; }
|
||||||
public DateTime UpdateTime { get; set; }
|
public DateTime UpdateTime { get; set; }
|
||||||
|
|
||||||
|
|
||||||
|
public int? NumberOfFrames { get; set; }
|
||||||
|
|
||||||
public bool IsDeleted { get; set; }
|
public bool IsDeleted { get; set; }
|
||||||
|
|
||||||
public DateTime? DeletedTime { get; set; }
|
public DateTime? DeletedTime { get; set; }
|
||||||
|
|||||||
@@ -102,3 +102,12 @@ update DataInspection set ObjectRelationParentId2 = (select top 1 TrialReadingC
|
|||||||
update DataInspection set ObjectRelationParentId3 = (select top 1 TrialReadingCriterionId from VisitTask where Id =DataInspection.GeneralId) where EntityName='VisitTask'
|
update DataInspection set ObjectRelationParentId3 = (select top 1 TrialReadingCriterionId from VisitTask where Id =DataInspection.GeneralId) where EntityName='VisitTask'
|
||||||
|
|
||||||
update ReadingTableQuestionTrial set DictionaryCode='' where DictionaryCode is null
|
update ReadingTableQuestionTrial set DictionaryCode='' where DictionaryCode is null
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
--维护RowInfo的OrderMark
|
||||||
|
|
||||||
|
select * from ReadingTableAnswerRowInfo
|
||||||
|
update ReadingTableAnswerRowInfo set ReadingTableAnswerRowInfo.OrderMark=ReadingQuestionTrial.OrderMark from ReadingQuestionTrial
|
||||||
|
inner join ReadingTableAnswerRowInfo on ReadingTableAnswerRowInfo.QuestionId=ReadingQuestionTrial.Id
|
||||||
Reference in New Issue
Block a user