feat(oa): 添加封账批次和日记账功能模块

- 新增封账批次管理相关接口和服务实现
- 新增日记账管理相关接口和服务实现
- 添加对应的实体类、VO类和BO类
- 实现基本的CRUD操作和批量删除功能
This commit is contained in:
2025-09-09 15:36:00 +08:00
parent a244a68a96
commit 7b74ae82a7
16 changed files with 1072 additions and 0 deletions

View File

@@ -0,0 +1,15 @@
package com.ruoyi.oa.mapper;
import com.ruoyi.oa.domain.OaAccountingBatch;
import com.ruoyi.oa.domain.vo.OaAccountingBatchVo;
import com.ruoyi.common.core.mapper.BaseMapperPlus;
/**
* 封账批次管理每次封账的批次信息一组封账数据对应一个批次Mapper接口
*
* @author Joshi
* @date 2025-09-09
*/
public interface OaAccountingBatchMapper extends BaseMapperPlus<OaAccountingBatchMapper, OaAccountingBatch, OaAccountingBatchVo> {
}

View File

@@ -0,0 +1,15 @@
package com.ruoyi.oa.mapper;
import com.ruoyi.oa.domain.OaJournalAccount;
import com.ruoyi.oa.domain.vo.OaJournalAccountVo;
import com.ruoyi.common.core.mapper.BaseMapperPlus;
/**
* 日记账绑定封账批次未封账数据batch_id为NULLMapper接口
*
* @author Joshi
* @date 2025-09-09
*/
public interface OaJournalAccountMapper extends BaseMapperPlus<OaJournalAccountMapper, OaJournalAccount, OaJournalAccountVo> {
}