ThinkFlowController.cs 592 B

12345678910111213141516171819202122232425
  1. using Business.BookManagement;
  2. using Business.BookManagement.Dto;
  3. using Microsoft.AspNetCore.Mvc;
  4. using System;
  5. using System.Collections.Generic;
  6. using System.Threading.Tasks;
  7. using Volo.Abp;
  8. using Volo.Abp.Application.Dtos;
  9. using Volo.Abp.AspNetCore.Mvc;
  10. namespace Business.Controllers
  11. {
  12. [RemoteService]
  13. [Area("Business")]
  14. [Route("api/business/thinkflow")]
  15. public class ThinkFlowController : AbpController
  16. {
  17. [HttpGet]
  18. [Route("index")]
  19. public ActionResult Index()
  20. {
  21. return Redirect("http://localhost:3001/");
  22. }
  23. }
  24. }