细节调整

This commit is contained in:
yanghongwei 2025-08-23 01:33:25 +08:00
parent 25b9d20cb3
commit 48b4d35672
2 changed files with 2 additions and 2 deletions

View File

@ -25,7 +25,7 @@ namespace LY.App.Controllers
[HttpGet("list")]
public async Task<IActionResult> List([FromQuery] AlarmReq input)
{
var result = await _alarmService.GetPage(input);
var result = await _alarmService.CreateHistoryPage(input);
return Ok(result);
}

View File

@ -316,7 +316,7 @@ namespace LY.App.Service
/// <returns></returns>
public async Task<ApiResult> GetPage(AlarmReq input)
{
var result = await CreateHistoryPage(input);
var result = await CreatePage(input);
return new ApiResult()
{
code = 0,