diff --git a/Yi.Abp.Net8/module/bbs/Yi.Framework.Bbs.Application/Services/Integral/IntegralService.cs b/Yi.Abp.Net8/module/bbs/Yi.Framework.Bbs.Application/Services/Integral/IntegralService.cs
index 768506d2..b8c23ed2 100644
--- a/Yi.Abp.Net8/module/bbs/Yi.Framework.Bbs.Application/Services/Integral/IntegralService.cs
+++ b/Yi.Abp.Net8/module/bbs/Yi.Framework.Bbs.Application/Services/Integral/IntegralService.cs
@@ -3,18 +3,33 @@ using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
+using Microsoft.AspNetCore.Authorization;
using Volo.Abp.Application.Services;
+using Volo.Abp.Users;
using Yi.Framework.Bbs.Domain.Managers;
namespace Yi.Framework.Bbs.Application.Services.Integral
{
- public class IntegralService:ApplicationService
+ public class IntegralService : ApplicationService
{
private IntegralManager _integralManager;
- public IntegralService(IntegralManager integralManager)
+ private ICurrentUser _currentUser;
+ public IntegralService(IntegralManager integralManager, ICurrentUser currentUser)
{
- _integralManager= integralManager;
+ _integralManager = integralManager;
+ _currentUser = currentUser;
}
+
+ ///
+ /// 签到
+ ///
+ ///
+ [Authorize]
+ public async Task