feat(bid): 完成批量业务优化与功能完善
1. 统一所有表格操作列样式,移除固定宽度避免布局溢出 2. 新增报价单自动编号与脏数据清理功能 3. 优化订单状态筛选与展示逻辑,新增closed状态支持 4. 完善操作日志管理,新增统计分析与详情查看功能 5. 优化报价单流程,调整提交审批逻辑与权限控制 6. 修复客户端订单查询SQL,优化关联查询逻辑 7. 新增报价单提交时自动更新提交时间的功能
This commit is contained in:
@@ -45,4 +45,44 @@ public interface SysOperLogMapper
|
||||
* 清空操作日志
|
||||
*/
|
||||
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);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user