mirror of
https://gitee.com/ccnetcore/Yi
synced 2026-03-11 12:10:50 +08:00
12 lines
280 B
C#
12 lines
280 B
C#
|
|
using System.Threading.Tasks;
|
|||
|
|
using Yi.Framework.Model.Models;
|
|||
|
|
using Yi.Framework.Repository;
|
|||
|
|
|
|||
|
|
namespace Yi.Framework.Interface
|
|||
|
|
{
|
|||
|
|
public partial interface IAgreeService : IBaseService<AgreeEntity>
|
|||
|
|
{
|
|||
|
|
Task<bool> OperateAsync(long articleId, long userId);
|
|||
|
|
}
|
|||
|
|
}
|