namespace Tiobon.Core.Api.Controllers;
///
/// 学分记录(Controller)
///
[Route("api/[controller]")]
[ApiController, GlobalActionFilter]
[Authorize(Permissions.Name), ApiExplorerSettings(GroupName = Grouping.GroupName_Ghre)]
public class Ghre_CreditPointController : BaseController
{
public Ghre_CreditPointController(IGhre_CreditPointServices service) : base(service)
{
}
#region 查询明细数据
///
/// 查询明细数据
///
/// body
///
[HttpPost, Route("QueryTotal")]
public async Task> QueryTotal([FromBody] QueryBody body)
{
return await _service.QueryTotal(body);
}
#endregion
}