feat(oa): 添加日记账批量更新接口并优化流程实例启动逻辑

- 在 IOaJournalAccountService 中添加 batchUpdate 方法
- 在 OaJournalAccountBo 中添加 journalIds 字段用于批量更新
- 实现 OaJournalAccountController 中的 batchUpdate 接口
- 在 OaJournalAccountServiceImpl 中实现 batchUpdate 方法,用于批量更新日记账的 batchId
- 优化 WfProcessServiceImpl 中的 startProcess
This commit is contained in:
2025-09-15 15:29:51 +08:00
parent 7b74ae82a7
commit 743c3133a6
5 changed files with 117 additions and 1 deletions

View File

@@ -10,6 +10,8 @@ import java.util.Date;
import java.math.BigDecimal;
import java.util.Date;
import java.util.List;
import com.fasterxml.jackson.annotation.JsonFormat;
import com.ruoyi.common.core.domain.BaseEntity;
@@ -73,6 +75,8 @@ public class OaJournalAccountBo extends BaseEntity {
* 备注
*/
private String remark;
//需要批量修改batchId的日记账记录ID
private List<Long> journalIds;
}