整理字段长度,迁移准备工作完毕

This commit is contained in:
2024-09-25 10:59:40 +08:00
parent 1da4fbe23b
commit 73e7ed11b1
49 changed files with 45865 additions and 73 deletions
@@ -22,12 +22,16 @@ public class ReadingTaskQuestionMark : BaseAddAuditEntity
public Guid? SeriesId { get; set; }
public Guid? StudyId { get; set; }
[MaxLength]
public string MarkTool { get; set; } = string.Empty;
[StringLength(1000)]
public string PicturePath { get; set; } = string.Empty;
public int? NumberOfFrames { get; set; }
[MaxLength]
public string MeasureData { get; set; } = string.Empty;
public Guid? FirstAddTaskId { get; set; }
@@ -40,10 +44,14 @@ public class ReadingTaskQuestionMark : BaseAddAuditEntity
public Guid? OtherStudyId { get; set; }
[MaxLength]
public string OtherMarkTool { get; set; } = string.Empty;
[StringLength(1000)]
public string OtherPicturePath { get; set; } = string.Empty;
public int? OtherNumberOfFrames { get; set; }
[MaxLength]
public string OtherMeasureData { get; set; } = string.Empty;
}