2021-08-23 16:57:25 +08:00
|
|
|
|
using Infrastructure.Attribute;
|
|
|
|
|
|
using System;
|
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
|
using System.Linq;
|
|
|
|
|
|
using System.Text;
|
|
|
|
|
|
using System.Threading.Tasks;
|
2021-09-16 19:07:49 +08:00
|
|
|
|
using ZR.Model.System.Dto;
|
2021-08-23 16:57:25 +08:00
|
|
|
|
using ZR.Model.System;
|
|
|
|
|
|
|
|
|
|
|
|
namespace ZR.Repository.System
|
|
|
|
|
|
{
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// 文章管理
|
|
|
|
|
|
/// </summary>
|
|
|
|
|
|
[AppService(ServiceLifetime = LifeTime.Transient)]
|
2021-11-27 09:43:04 +08:00
|
|
|
|
public class ArticleRepository : BaseRepository<Article>
|
2021-08-23 16:57:25 +08:00
|
|
|
|
{
|
|
|
|
|
|
|
|
|
|
|
|
}
|
2021-11-27 09:43:04 +08:00
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// 文章目录
|
|
|
|
|
|
/// </summary>
|
|
|
|
|
|
[AppService(ServiceLifetime = LifeTime.Transient)]
|
|
|
|
|
|
public class ArticleCategoryRepository : BaseRepository<ArticleCategory>
|
|
|
|
|
|
{
|
|
|
|
|
|
|
|
|
|
|
|
}
|
2021-08-23 16:57:25 +08:00
|
|
|
|
}
|