1
All checks were successful
Docker Build & Deploy / Build Docker Image (push) Successful in 26s
Docker Build & Deploy / Deploy to Production (push) Successful in 13s
Docker Build & Deploy / Cleanup Dangling Images (push) Successful in 1s
Docker Build & Deploy / WeChat Notification (push) Successful in 1s

This commit is contained in:
孙诚
2026-01-15 21:19:03 +08:00
parent 0e140548b7
commit 71a8707241
3 changed files with 12 additions and 78 deletions

View File

@@ -84,24 +84,6 @@ public class BudgetController(
}
}
/// <summary>
/// 更新归档总结
/// </summary>
[HttpPost]
public async Task<BaseResponse> UpdateArchiveSummaryAsync([FromBody] UpdateArchiveSummaryDto dto)
{
try
{
await budgetService.UpdateArchiveSummaryAsync(dto.ReferenceDate.Year, dto.ReferenceDate.Month, dto.Summary);
return BaseResponse.Done();
}
catch (Exception ex)
{
logger.LogError(ex, "更新归档总结失败");
return $"更新归档总结失败: {ex.Message}".Fail();
}
}
/// <summary>
/// 获取指定周期的存款预算信息
/// </summary>