zxl
2025-03-20 baf60bc658c1bfb7fc0dd79d2bfc03abcb126488
business/src/main/java/com/ycl/service/impl/ProjectEngineeringServiceImpl.java
@@ -100,9 +100,9 @@
     */
    @Override
    public Result detail(String id) {
        ProjectEngineeringVO vo = baseMapper.getById(id);
        Assert.notNull(vo, "记录不存在");
        return Result.ok().data(vo);
        ProjectEngineering entity = baseMapper.selectById(id);
        Assert.notNull(entity, "记录不存在");
        return Result.ok().data(entity);
    }
    /**