修改邮件配置为适配多标准
continuous-integration/drone/push Build is passing

This commit is contained in:
2025-06-18 17:14:13 +08:00
parent 918728a42e
commit 3ed74a578e
8 changed files with 19906 additions and 19 deletions
@@ -42,8 +42,6 @@ public class TrialEmailNoticeConfig : BaseFullDeleteAuditEntity
public string Code { get; set; } = null!;
public CriterionType? CriterionTypeEnum { get; set; }
public string Description { get; set; } = null!;
public string EmailCron { get; set; } = null!;
@@ -86,6 +84,14 @@ public class TrialEmailNoticeConfig : BaseFullDeleteAuditEntity
[Comment("邮件延时秒数,比如一个事件触发,延迟多少s后才发邮件")]
public int? EmailDelaySeconds { get; set; } = null!;
[Comment("后续删除,需要维护数据")]
public CriterionType? CriterionTypeEnum { get; set; }
[Comment("邮件配置的多个标准")]
public List<CriterionType>? CriterionTypeList { get; set; }
}
[Comment("项目 - 项目邮件用户黑名单")]