feat: 完成会员消息触达后端模块
This commit is contained in:
@@ -23,6 +23,14 @@ public interface IMiniUserRepository
|
||||
/// <returns>小程序用户,如果不存在则返回 null</returns>
|
||||
Task<MiniUser?> FindByIdAsync(long id, CancellationToken cancellationToken = default);
|
||||
|
||||
/// <summary>
|
||||
/// 按用户标识集合批量查询小程序用户。
|
||||
/// </summary>
|
||||
Task<IReadOnlyList<MiniUser>> GetByIdsAsync(
|
||||
IReadOnlyCollection<long> ids,
|
||||
long tenantId,
|
||||
CancellationToken cancellationToken = default);
|
||||
|
||||
/// <summary>
|
||||
/// 创建或更新小程序用户(如果 OpenId 已存在则更新,否则创建)。
|
||||
/// </summary>
|
||||
|
||||
Reference in New Issue
Block a user