11 lines
198 B
C#
11 lines
198 B
C#
namespace JiShe.ServicePro.Controllers
|
|
{
|
|
public class HomeController : AbpController
|
|
{
|
|
public ActionResult Index()
|
|
{
|
|
return Redirect("/Login");
|
|
}
|
|
}
|
|
}
|