From e7c60afd56e8a46dac2111283108b718398c7d2a Mon Sep 17 00:00:00 2001
From: 云 <2163098428@qq.com>
Date: 星期一, 25 五月 2026 16:27:47 +0800
Subject: [PATCH] refactor(approve): 重构审批业务状态同步逻辑

---
 src/main/java/com/ruoyi/account/bean/dto/financial/AccountSubjectImportDto.java |   36 ++++++++++++++++++++++++++++++++++++
 1 files changed, 36 insertions(+), 0 deletions(-)

diff --git a/src/main/java/com/ruoyi/account/bean/dto/financial/AccountSubjectImportDto.java b/src/main/java/com/ruoyi/account/bean/dto/financial/AccountSubjectImportDto.java
new file mode 100644
index 0000000..7ea5225
--- /dev/null
+++ b/src/main/java/com/ruoyi/account/bean/dto/financial/AccountSubjectImportDto.java
@@ -0,0 +1,36 @@
+package com.ruoyi.account.bean.dto.financial;
+
+import com.ruoyi.framework.aspectj.lang.annotation.Excel;
+import io.swagger.v3.oas.annotations.media.Schema;
+import lombok.Data;
+
+@Data
+public class AccountSubjectImportDto {
+
+    @Schema(description = "绉戠洰缂栫爜")
+    @Excel(name = "绉戠洰缂栫爜")
+    private String subjectCode;
+
+    @Schema(description = "绉戠洰鍚嶇О")
+    @Excel(name = "绉戠洰鍚嶇О")
+    private String subjectName;
+
+    @Schema(description = "绉戠洰绫诲瀷")
+    @Excel(name = "绉戠洰绫诲瀷")
+    private String subjectType;
+
+    @Schema(description = "浣欓鏂瑰悜")
+    @Excel(name = "浣欓鏂瑰悜")
+    private String balanceDirection;
+
+    /**
+     * 鐘舵�� 0鍚敤 1绂佺敤
+     */
+    @Schema(description = "鐘舵��")
+    @Excel(name = "鐘舵��",readConverterExp = "0=鍚敤,1=绂佺敤")
+    private Integer status;
+
+    @Schema(description = "澶囨敞")
+    @Excel(name = "澶囨敞")
+    private String remark;
+}

--
Gitblit v1.9.3