| 12345678910111213141516171819202122232425 |
- using Business.BookManagement;
- using Business.BookManagement.Dto;
- using Microsoft.AspNetCore.Mvc;
- using System;
- using System.Collections.Generic;
- using System.Threading.Tasks;
- using Volo.Abp;
- using Volo.Abp.Application.Dtos;
- using Volo.Abp.AspNetCore.Mvc;
- namespace Business.Controllers
- {
- [RemoteService]
- [Area("Business")]
- [Route("api/business/thinkflow")]
- public class ThinkFlowController : AbpController
- {
- [HttpGet]
- [Route("index")]
- public ActionResult Index()
- {
- return Redirect("http://localhost:3001/");
- }
- }
- }
|