12 lines
287 B
C#
12 lines
287 B
C#
using RIZO.Model.Content;
|
|
|
|
namespace RIZO.Service.Content.IService
|
|
{
|
|
public interface IArticlePraiseService : IBaseService<ArticlePraise>
|
|
{
|
|
int Praise(ArticlePraise dto);
|
|
int CanclePraise(long userid, long articleId);
|
|
int PlusPraise(long pid);
|
|
}
|
|
}
|