21 lines
619 B
C#
21 lines
619 B
C#
|
|
using RIZO.Model.Content.Dto;
|
||
|
|
using RIZO.Model.Content;
|
||
|
|
|
||
|
|
namespace RIZO.Service.Content.IService
|
||
|
|
{
|
||
|
|
/// <summary>
|
||
|
|
/// 用户加入圈子service接口
|
||
|
|
/// </summary>
|
||
|
|
public interface IArticleUserCirclesService : IBaseService<ArticleUserCircles>
|
||
|
|
{
|
||
|
|
PagedInfo<ArticleUserCirclesDto> GetList(ArticleUserCirclesQueryDto parm);
|
||
|
|
|
||
|
|
ArticleUserCircles GetInfo(int Id);
|
||
|
|
|
||
|
|
int JoinCircle(int userId, int categoryId);
|
||
|
|
int RemoveCircle(int userId, int categoryId);
|
||
|
|
int IsJoin(int userId, int categoryId);
|
||
|
|
List<ArticleCategoryDto> GetMyJoinCircles(int userId);
|
||
|
|
}
|
||
|
|
}
|