From c2277c88db7d66a2a694c6658ea0ef6aade74717 Mon Sep 17 00:00:00 2001
From: 云 <2163098428@qq.com>
Date: 星期三, 13 五月 2026 17:36:33 +0800
Subject: [PATCH] refactor(system): 移除角色和用户映射器中的数据范围过滤注释

---
 src/main/java/com/ruoyi/account/bean/vo/financial/FinLedgerEntryRecordVo.java |   43 +++++++++++++++++++++++++++++++++++++++++++
 1 files changed, 43 insertions(+), 0 deletions(-)

diff --git a/src/main/java/com/ruoyi/account/bean/vo/financial/FinLedgerEntryRecordVo.java b/src/main/java/com/ruoyi/account/bean/vo/financial/FinLedgerEntryRecordVo.java
new file mode 100644
index 0000000..846b350
--- /dev/null
+++ b/src/main/java/com/ruoyi/account/bean/vo/financial/FinLedgerEntryRecordVo.java
@@ -0,0 +1,43 @@
+package com.ruoyi.account.bean.vo.financial;
+
+import lombok.Data;
+
+import java.math.BigDecimal;
+import java.time.LocalDate;
+
+/**
+ * 绉戠洰璐﹀熀纭�鍒嗗綍鏌ヨ瀵硅薄锛圫QL鏄犲皠浣跨敤锛夈��
+ */
+@Data
+public class FinLedgerEntryRecordVo {
+
+    /**
+     * 鍑瘉鏃ユ湡銆�
+     */
+    private LocalDate voucherDate;
+
+    /**
+     * 鍑瘉瀛楀彿銆�
+     */
+    private String voucherNo;
+
+    /**
+     * 鎽樿銆�
+     */
+    private String summary;
+
+    /**
+     * 鍊熸柟閲戦銆�
+     */
+    private BigDecimal debit;
+
+    /**
+     * 璐锋柟閲戦銆�
+     */
+    private BigDecimal credit;
+
+    /**
+     * 琛屽彿锛堟帓搴忓瓧娈碉級銆�
+     */
+    private Integer rowNo;
+}

--
Gitblit v1.9.3