chenrui
2025-05-12 4f6d90f81e1328baeb8c9f2c9c23e34b7b8f002a
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;
    }
}