2023-03-14 12:21:43 +08:00
|
|
|
|
using ZR.Model;
|
2021-08-23 16:57:25 +08:00
|
|
|
|
using ZR.Model.System;
|
2023-03-14 12:21:43 +08:00
|
|
|
|
using ZR.Model.System.Dto;
|
2021-08-23 16:57:25 +08:00
|
|
|
|
|
2021-09-16 19:35:17 +08:00
|
|
|
|
namespace ZR.Service.System.IService
|
2021-08-23 16:57:25 +08:00
|
|
|
|
{
|
|
|
|
|
|
public interface IArticleService : IBaseService<Article>
|
|
|
|
|
|
{
|
2023-03-14 12:21:43 +08:00
|
|
|
|
PagedInfo<ArticleDto> GetList(ArticleQueryDto parm);
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// 修改文章管理
|
|
|
|
|
|
/// </summary>
|
|
|
|
|
|
/// <param name="model"></param>
|
|
|
|
|
|
/// <returns></returns>
|
|
|
|
|
|
public int UpdateArticle(Article model);
|
2021-08-23 16:57:25 +08:00
|
|
|
|
}
|
|
|
|
|
|
}
|