项目邮件配置修改--019
parent
a8e4d6285d
commit
3dfe229024
|
@ -136,7 +136,7 @@ namespace IRaCIS.Core.Application.ViewModel
|
||||||
public Guid TrialId { get; set; }
|
public Guid TrialId { get; set; }
|
||||||
|
|
||||||
|
|
||||||
public CriterionType CriterionTypeEnum { get; set; }
|
public CriterionType? CriterionTypeEnum { get; set; }
|
||||||
|
|
||||||
|
|
||||||
public List<UserTypeEnum> ToUserTypeList { 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 Description { get; set; } = string.Empty;
|
||||||
|
|
||||||
|
|
||||||
public string AttachName { get; set; }
|
public string AttachName { get; set; } = string.Empty;
|
||||||
public string AttachNameCN { get; set; }
|
public string AttachNameCN { get; set; } = string.Empty;
|
||||||
|
|
||||||
|
|
||||||
public string EmailHtmlContent { get; set; } = string.Empty;
|
public string EmailHtmlContent { get; set; } = string.Empty;
|
||||||
|
|
|
@ -18,6 +18,9 @@ namespace IRaCIS.Core.Domain.Models
|
||||||
[Table("TrialEmailNoticeConfig")]
|
[Table("TrialEmailNoticeConfig")]
|
||||||
public class TrialEmailNoticeConfig : Entity, IAuditUpdate, IAuditAdd
|
public class TrialEmailNoticeConfig : Entity, IAuditUpdate, IAuditAdd
|
||||||
{
|
{
|
||||||
|
[JsonIgnore]
|
||||||
|
|
||||||
|
public Trial Trial { get; set; }
|
||||||
|
|
||||||
[Required]
|
[Required]
|
||||||
public Guid TrialId { get; set; }
|
public Guid TrialId { get; set; }
|
||||||
|
|
|
@ -35,6 +35,8 @@ namespace IRaCIS.Core.Domain.Share
|
||||||
public string FromName { get; set; }
|
public string FromName { get; set; }
|
||||||
|
|
||||||
public string AuthorizationCode { get; set; }
|
public string AuthorizationCode { get; set; }
|
||||||
|
|
||||||
|
public string SiteUrl { get; set; }
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue