feat(bid): 新增操作记录模块并优化物料管理页面

1. 新增系统操作日志的后端控制器、前端API、路由与完整页面
2. 为物料管理页面添加发货记录标签页,新增物料发货记录查询功能
This commit is contained in:
2026-06-13 10:40:26 +08:00
parent a8e84f9132
commit 8393e4940d
5 changed files with 327 additions and 64 deletions

View File

@@ -0,0 +1,23 @@
package com.ruoyi.web.controller.bid;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.security.access.prepost.PreAuthorize;
import org.springframework.web.bind.annotation.*;
import com.ruoyi.common.core.controller.BaseController;
import com.ruoyi.common.core.page.TableDataInfo;
import com.ruoyi.system.domain.SysOperLog;
import com.ruoyi.system.service.ISysOperLogService;
@RestController
@RequestMapping("/bid/operationLog")
public class BizOperationLogController extends BaseController {
@Autowired
private ISysOperLogService operLogService;
@PreAuthorize("@ss.hasPermi('bid:operationlog:list')")
@GetMapping("/list")
public TableDataInfo list(SysOperLog log) {
startPage();
return getDataTable(operLogService.selectOperLogList(log));
}
}