数据同步增加表,增加项目字段,修改项目配置接口,更新邮件发送包
continuous-integration/drone/push Build is failing

This commit is contained in:
2026-03-09 17:35:11 +08:00
parent 4b569e8fdb
commit 6427d1f5fb
4 changed files with 100 additions and 5 deletions
+12 -3
View File
@@ -41,7 +41,7 @@ public partial class Trial : BaseFullDeleteAuditEntity
public List<TrialUserRole> TrialUserRoleList { get; set; } = new List<TrialUserRole>();
[JsonIgnore]
public List<TrialIdentityUser> TrialIdentityUserList { get; set; }
public List<TrialIdentityUser> TrialIdentityUserList { get; set; }
[JsonIgnore]
public List<ReadingQuestionCriterionTrial> TrialReadingCriterionList { get; set; } = new List<ReadingQuestionCriterionTrial>();
[JsonIgnore]
@@ -133,7 +133,7 @@ public partial class Trial : BaseFullDeleteAuditEntity
public string AttendedReviewerTypes { get; set; } = string.Empty;
[StringLength(1000)]
[StringLength(2000)]
public string TrialExtraConfigJsonStr { get; set; } = string.Empty;
public bool VisitPlanConfirmed { get; set; }
@@ -259,7 +259,7 @@ public partial class Trial : BaseFullDeleteAuditEntity
/// 图像格式
/// </summary>
[StringLength(2000)]
public List<string> ImageFormatList { get; set; } = new List<string>() {"jpg","jpeg","png","bmp","pdf","zip","mp4" };
public List<string> ImageFormatList { get; set; } = new List<string>() { "jpg", "jpeg", "png", "bmp", "pdf", "zip", "mp4" };
#endregion
#region
@@ -316,6 +316,15 @@ public partial class Trial : BaseFullDeleteAuditEntity
/// </summary>
public bool? IsImageQualityControl { get; set; }
public TrialDataStore TrialDataStoreType { get; set; }
}
public enum TrialDataStore
{
SingleCenter = 0,
MUtiCenter = 1,
}
public enum CollectImagesType