RuoYi
2025-03-18 a1ec1d57d45a2821d34254c94d5089ba4ef622e2
ruoyi-api/ruoyi-api-system/src/main/java/com/ruoyi/system/api/domain/SysOperLog.java
@@ -58,10 +58,6 @@
    @Excel(name = "操作地址")
    private String operIp;
    /** 操作地点 */
    @Excel(name = "操作地点")
    private String operLocation;
    /** 请求参数 */
    @Excel(name = "请求参数")
    private String operParam;
@@ -82,6 +78,10 @@
    @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss")
    @Excel(name = "操作时间", width = 30, dateFormat = "yyyy-MM-dd HH:mm:ss")
    private Date operTime;
    /** 消耗时间 */
    @Excel(name = "消耗时间", suffix = "毫秒")
    private Long costTime;
    public Long getOperId()
    {
@@ -193,16 +193,6 @@
        this.operIp = operIp;
    }
    public String getOperLocation()
    {
        return operLocation;
    }
    public void setOperLocation(String operLocation)
    {
        this.operLocation = operLocation;
    }
    public String getOperParam()
    {
        return operParam;
@@ -252,4 +242,14 @@
    {
        this.operTime = operTime;
    }
    public Long getCostTime()
    {
        return costTime;
    }
    public void setCostTime(Long costTime)
    {
        this.costTime = costTime;
    }
}