项目邮件配置修改--019

Uat_Study
hang 2023-08-23 17:46:31 +08:00
parent a8e4d6285d
commit 3dfe229024
3 changed files with 8 additions and 3 deletions

View File

@ -136,7 +136,7 @@ namespace IRaCIS.Core.Application.ViewModel
public Guid TrialId { get; set; }
public CriterionType CriterionTypeEnum { get; set; }
public CriterionType? CriterionTypeEnum { get; set; }
public List<UserTypeEnum> ToUserTypeList { get; set; }
@ -179,8 +179,8 @@ namespace IRaCIS.Core.Application.ViewModel
public string Description { get; set; } = string.Empty;
public string AttachName { get; set; }
public string AttachNameCN { get; set; }
public string AttachName { get; set; } = string.Empty;
public string AttachNameCN { get; set; } = string.Empty;
public string EmailHtmlContent { get; set; } = string.Empty;

View File

@ -18,6 +18,9 @@ namespace IRaCIS.Core.Domain.Models
[Table("TrialEmailNoticeConfig")]
public class TrialEmailNoticeConfig : Entity, IAuditUpdate, IAuditAdd
{
[JsonIgnore]
public Trial Trial { get; set; }
[Required]
public Guid TrialId { get; set; }

View File

@ -35,6 +35,8 @@ namespace IRaCIS.Core.Domain.Share
public string FromName { get; set; }
public string AuthorizationCode { get; set; }
public string SiteUrl { get; set; }
}