AdController.cs 419 B

12345678910111213141516171819202122232425
  1. using DW5S.WebApi;
  2. using Microsoft.AspNetCore.Mvc;
  3. namespace AdService.Controllers
  4. {
  5. /// <summary>
  6. /// 采集接口
  7. /// </summary>
  8. public class AdController : BaseController
  9. {
  10. /// <summary>
  11. /// 开始采集
  12. /// </summary>
  13. /// <returns></returns>
  14. [HttpPost]
  15. public string StartAD()
  16. {
  17. return "aaaaaaaaaaa";
  18. }
  19. }
  20. }