1. 统一所有表格操作列样式,移除固定宽度避免布局溢出 2. 新增报价单自动编号与脏数据清理功能 3. 优化订单状态筛选与展示逻辑,新增closed状态支持 4. 完善操作日志管理,新增统计分析与详情查看功能 5. 优化报价单流程,调整提交审批逻辑与权限控制 6. 修复客户端订单查询SQL,优化关联查询逻辑 7. 新增报价单提交时自动更新提交时间的功能
89 lines
2.3 KiB
Java
89 lines
2.3 KiB
Java
package com.ruoyi.system.mapper;
|
|
|
|
import java.util.List;
|
|
import com.ruoyi.system.domain.SysOperLog;
|
|
|
|
/**
|
|
* 操作日志 数据层
|
|
*
|
|
* @author ruoyi
|
|
*/
|
|
public interface SysOperLogMapper
|
|
{
|
|
/**
|
|
* 新增操作日志
|
|
*
|
|
* @param operLog 操作日志对象
|
|
*/
|
|
public void insertOperlog(SysOperLog operLog);
|
|
|
|
/**
|
|
* 查询系统操作日志集合
|
|
*
|
|
* @param operLog 操作日志对象
|
|
* @return 操作日志集合
|
|
*/
|
|
public List<SysOperLog> selectOperLogList(SysOperLog operLog);
|
|
|
|
/**
|
|
* 批量删除系统操作日志
|
|
*
|
|
* @param operIds 需要删除的操作日志ID
|
|
* @return 结果
|
|
*/
|
|
public int deleteOperLogByIds(Long[] operIds);
|
|
|
|
/**
|
|
* 查询操作日志详细
|
|
*
|
|
* @param operId 操作ID
|
|
* @return 操作日志对象
|
|
*/
|
|
public SysOperLog selectOperLogById(Long operId);
|
|
|
|
/**
|
|
* 清空操作日志
|
|
*/
|
|
public void cleanOperLog();
|
|
|
|
/**
|
|
* 查询操作日志统计信息
|
|
*
|
|
* @param operLog 操作日志对象(带筛选条件)
|
|
* @return 统计结果
|
|
*/
|
|
public java.util.Map<String, Object> selectOperLogStats(SysOperLog operLog);
|
|
|
|
/**
|
|
* 按模块统计操作日志
|
|
*
|
|
* @param operLog 操作日志对象(带筛选条件)
|
|
* @return 各模块统计列表
|
|
*/
|
|
public java.util.List<java.util.Map<String, Object>> selectModuleStats(SysOperLog operLog);
|
|
|
|
/**
|
|
* 按操作类型统计
|
|
*
|
|
* @param operLog 操作日志对象(带筛选条件)
|
|
* @return 各操作类型统计列表
|
|
*/
|
|
public java.util.List<java.util.Map<String, Object>> selectBusinessTypeStats(SysOperLog operLog);
|
|
|
|
/**
|
|
* 查询每日操作趋势
|
|
*
|
|
* @param operLog 操作日志对象(带筛选条件)
|
|
* @return 每日趋势列表
|
|
*/
|
|
public java.util.List<java.util.Map<String, Object>> selectDailyTrend(SysOperLog operLog);
|
|
|
|
/**
|
|
* 按模块统计异常日志
|
|
*
|
|
* @param operLog 操作日志对象(带筛选条件)
|
|
* @return 各模块异常统计列表
|
|
*/
|
|
public java.util.List<java.util.Map<String, Object>> selectErrorStats(SysOperLog operLog);
|
|
}
|