Files
Yi.Framework/Yi.Framework.Net6/Yi.Framework.Interface/IAgreeService.cs
2022-11-29 23:03:10 +08:00

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);
}
}