debugger
All checks were successful
Docker Build & Deploy / Build Docker Image (push) Successful in 25s
Docker Build & Deploy / Deploy to Production (push) Successful in 12s
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-09 14:03:45 +08:00
parent ef4ed9fd57
commit b41121400d

View File

@@ -17,7 +17,7 @@ public class BudgetArchiveJob(
logger.LogInformation("开始执行预算归档任务");
// 每个月1号执行归档上个月的数据
var targetDate = DateTime.Now.AddMonths(-1);
var targetDate = DateTime.Now.AddMonths(0); // TODO 调试期间使用
var year = targetDate.Year;
var month = targetDate.Month;