后厨api
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 

32 lines
847 B

  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Threading.Tasks;
  6. using BPA.SAAS.KitChenManage.Application.AExternalPlatform.Service.CheckService.Services;
  7. using Microsoft.AspNetCore.Components.Forms;
  8. namespace BPA.SAAS.Manage.Application.AExternalPlatform.Service.CheckService
  9. {
  10. [ApiDescriptionSettings("开放平台", Tag = "检查"), AllowAnonymous]
  11. public class CheckServices : IDynamicApiController
  12. {
  13. private readonly ICheckServices _checkServices;
  14. public CheckServices(ICheckServices checkServices)
  15. {
  16. _checkServices = checkServices;
  17. }
  18. /// <summary>
  19. ///检查Sign
  20. /// </summary>
  21. public async Task CheckSign<T>(T dto)
  22. {
  23. await _checkServices.CheckSign(dto);
  24. }
  25. }
  26. }