公告板
版本库
filestore
活动
搜索
登录
main
/
LifePaymentApi
生活缴费api
概况
操作记录
提交次数
目录
文档
派生
对比
blame
|
历史
|
原始文档
Merge branch 'dev-lifepay-v1.3' of http://120.26.58.240:8888/r/LifePaymentA...
zhengyiming
2025-04-01
a3f1926a7530fd4a3b9196824a8e8b00c693e6e3
[LifePaymentApi.git]
/
LifePayment
/
LifePayment.Host
/
Controllers
/
HomeController.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
using Microsoft.AspNetCore.Mvc;
using Volo.Abp.AspNetCore.Mvc;
namespace LifePayment.Host
{
public class HomeController : AbpController
{
public ActionResult Index()
{
return Redirect("~/swagger");
}
}
}