AI-accounting-soft/src/main/java/com/accounting/mapper/BudgetMapper.java
ni ziyi 2ca71b6982 feat(预算功能新增)
1、实现月度预算功能,每个用户每个月可以设置一个预算金额。在首页展示预算相关信息,并提供预算调整功能。每月首次打开应用时,自动结算上月预算并弹窗通知用户,同时开启本月预算。
2025-12-13 22:33:42 +08:00

11 lines
241 B
Java

package com.accounting.mapper;
import com.accounting.entity.Budget;
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
import org.apache.ibatis.annotations.Mapper;
@Mapper
public interface BudgetMapper extends BaseMapper<Budget> {
}