feat(member): add message reach backend module and docs seeds

This commit is contained in:
2026-03-04 13:35:22 +08:00
parent bd418c5927
commit b5aa060faf
33 changed files with 4282 additions and 2 deletions

View File

@@ -0,0 +1,23 @@
namespace TakeoutSaaS.Domain.Membership.Enums;
/// <summary>
/// 消息收件明细发送状态。
/// </summary>
public enum MemberMessageRecipientStatus
{
/// <summary>
/// 待发送。
/// </summary>
Pending = 0,
/// <summary>
/// 发送成功。
/// </summary>
Sent = 1,
/// <summary>
/// 发送失败。
/// </summary>
Failed = 2
}