20 lines
495 B
C#
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
|
|
}
|
|
} |