From fd60ef9d3c3d7c1eee9a6fb458fe4084463b5b81 Mon Sep 17 00:00:00 2001
From: 云 <2163098428@qq.com>
Date: 星期二, 26 五月 2026 10:42:41 +0800
Subject: [PATCH] refactor(account): 重构财务模块DTO包结构并添加总账科目功能
---
src/main/java/com/ruoyi/project/monitor/domain/SysOperLog.java | 14 ++++++++++++++
1 files changed, 14 insertions(+), 0 deletions(-)
diff --git a/src/main/java/com/ruoyi/project/monitor/domain/SysOperLog.java b/src/main/java/com/ruoyi/project/monitor/domain/SysOperLog.java
index 71d77fa..bd949b5 100644
--- a/src/main/java/com/ruoyi/project/monitor/domain/SysOperLog.java
+++ b/src/main/java/com/ruoyi/project/monitor/domain/SysOperLog.java
@@ -83,6 +83,10 @@
@Excel(name = "鎿嶄綔鏃堕棿", width = 30, dateFormat = "yyyy-MM-dd HH:mm:ss")
private Date operTime;
+ /** 娑堣�楁椂闂� */
+ @Excel(name = "娑堣�楁椂闂�", suffix = "姣")
+ private Long costTime;
+
public Long getOperId()
{
return operId;
@@ -252,4 +256,14 @@
{
this.operTime = operTime;
}
+
+ public Long getCostTime()
+ {
+ return costTime;
+ }
+
+ public void setCostTime(Long costTime)
+ {
+ this.costTime = costTime;
+ }
}
--
Gitblit v1.9.3