自动化立体仓库 - WMS系统
1
zhangc
2025-04-17 bdfe4b740175f29858c870d710ec6ff5d4dc6ef0
src/main/java/com/zy/asrs/controller/WrkMastDetlLogController.java
@@ -102,7 +102,7 @@
    @ManagerAuth
    public R update(WrkMastDetlLog wrkMastDetlLog) {
        if (Cools.isEmpty(wrkMastDetlLog)) {
            return R.error();
            return R.error("参数缺失");
        }
        wrkMastDetlLogService.updateById(wrkMastDetlLog);
        return R.ok();
@@ -118,8 +118,8 @@
    }
    @RequestMapping(value = "/wrkMastDetlLog/export/auth")
    @ManagerAuth
    public R export(@RequestBody JSONObject param) {
    @ManagerAuth(memo = "工作历史档明细导出")
    public synchronized R export(@RequestBody JSONObject param) {
        EntityWrapper<WrkMastDetlLog> wrapper = new EntityWrapper<>();
        List<String> fields = JSONObject.parseArray(param.getJSONArray("fields").toJSONString(), String.class);
        Map<String, Object> map = excludeTrash(param.getJSONObject("wrkMastDetlLog"));