油漆
This commit is contained in:
18
server/ZR.Service/System/IService/IArticleService.cs
Normal file
18
server/ZR.Service/System/IService/IArticleService.cs
Normal file
@@ -0,0 +1,18 @@
|
||||
using ZR.Model;
|
||||
using ZR.Model.System;
|
||||
using ZR.Model.System.Dto;
|
||||
|
||||
namespace ZR.Service.System.IService
|
||||
{
|
||||
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);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user