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

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
+5 -1
View File
@@ -207,13 +207,15 @@ public class VisitTask : BaseFullAuditEntity
public bool IsReadClinicalData { get; set; } = false;
[Comment("关联的访视任务ID (当前任务是访视任务的话会有自己)")]
[StringLength(2000)]
public string RelatedVisitTaskIds { get; set; } = "[]";
[Comment("报告任务关系 包含冻结")]
[StringLength(2000)]
public string ReportRelatedTaskIds { get; set; } = "[]";
[Comment("既往任务Id 不包括自己")]
[StringLength(2000)]
public string PastResultTaskIds { get; set; } = "[]";
#region
@@ -223,7 +225,9 @@ public class VisitTask : BaseFullAuditEntity
[Comment("裁判结果的备注")]
public string JudgeResultRemark { get; set; } = string.Empty;
[Comment("裁判结果的图片路径")]
[StringLength(1000)]
public string JudgeResultImagePath { get; set; } = string.Empty;
#endregion