self_mall_api/ARW.Repository/Business/SubscribeTasks/SubscribeTaskRepository.cs
2023-06-02 21:15:33 +08:00

20 lines
495 B
C#

using System;
using Infrastructure.Attribute;
using ARW.Repository.System;
using ARW.Model.Models.Business.SubscribeTasks;
namespace ARW.Repository.Business.SubscribeTasks
{
/// <summary>
/// 订阅推送任务仓储
///
/// @author admin
/// @date 2022-12-21
/// </summary>
[AppService(ServiceLifetime = LifeTime.Transient)]
public class SubscribeTaskRepository : BaseRepository<SubscribeTask>
{
#region
#endregion
}
}