19 lines
514 B
C#
Raw Normal View History

2024-07-01 16:04:10 +08:00
using DOAN.Model;
using DOAN.Model.System;
using DOAN.Model.System.Dto;
2024-05-16 13:30:30 +08:00
2024-07-01 16:04:10 +08:00
namespace DOAN.Service.System.IService
2024-05-16 13:30:30 +08:00
{
public interface IArticleService : IBaseService<Article>
{
PagedInfo<ArticleDto> GetList(ArticleQueryDto parm);
PagedInfo<ArticleDto> GetMyList(ArticleQueryDto parm);
/// <summary>
/// 修改文章管理
/// </summary>
/// <param name="model"></param>
/// <returns></returns>
public int UpdateArticle(Article model);
}
}