zhangnaisong
2024-08-07 a59200e76cfd8795c35e021780c556c1b3fc9e7e
ard-work/src/main/java/com/ruoyi/sy/controller/ArdTankLockController.java
@@ -8,6 +8,7 @@
import com.github.pagehelper.PageInfo;
import com.ruoyi.common.utils.SecurityUtils;
import com.ruoyi.common.utils.uuid.IdUtils;
import com.ruoyi.sy.domain.ArdTankLockProcessLog;
import com.ruoyi.sy.domain.ArdTankWall;
import com.ruoyi.sy.service.*;
import com.ruoyi.utils.result.Results;
@@ -439,4 +440,14 @@
        dataTable.setMsg("查询成功");
        return dataTable;
    }
    /*@ApiOperation("根据车牌号导出电磁锁手动操控记录")
    @PreAuthorize("@ss.hasPermi('sy:lock:exportArdTankLockProcessLog')")
    @PostMapping("/exportArdTankLockProcessLog")
    public void exportArdTankLockProcessLog(HttpServletResponse response, ArdTankLockProcessLog ardTankLockProcessLog) {
        List<ArdTankLockProcessLog> list = ardTankLockProcessLogService.exportArdTankLockProcessLog(ardTankLockProcessLog.getCarPlate());
        ExcelUtil<ArdTankLockProcessLog> util = new ExcelUtil<ArdTankLockProcessLog>(ArdTankLockProcessLog. class);
        util.exportExcel(response, list, "罐车锁操控日志数据");
    }*/
}