namespace Entity; public class BudgetArchive : BaseEntity { /// /// 预算Id /// public long BudgetId { get; set; } /// /// 预算周期类型 /// public BudgetPeriodType BudgetType { get; set; } /// /// 预算金额 /// public decimal BudgetedAmount { get; set; } /// /// 周期内实际发生金额 /// public decimal RealizedAmount { get; set; } /// /// 详细描述 /// public string? Description { get; set; } /// /// 归档目标年份 /// public int Year { get; set; } /// /// 归档目标月份 /// public int Month { get; set; } /// /// 归档日期 /// public DateTime ArchiveDate { get; set; } = DateTime.Now; }