公告板
版本库
filestore
活动
搜索
登录
main
/
LifePaymentApi
生活缴费api
概况
操作记录
提交次数
目录
文档
派生
对比
blame
|
历史
|
原始文档
fix:用户端--我的--数据看板,昨日活跃用户数据统计不正确,统计的是登录账号所配置的渠道中昨日进行充值且充值成功的用户记录
sunpengfei
2025-06-11
87b0ae0a2aca16763bf054c4c785323e36f68387
[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");
}
}
}