Cui Zhi Feng
2024-08-29 74c467fe392a71755813283e322e0d8a083ef73e
src/main/java/com/mzl/flower/service/point/PointGoodsService.java
@@ -75,4 +75,15 @@
        return dto;
    }
    public void updateStatus(Long id, String status){
        PointGoods p = pointGoodsMapper.selectById(id);
        if(p == null){
            throw new ValidationException("商品未找到");
        }
        p.setStatus(status);
        p.update(SecurityUtils.getUserId());
        pointGoodsMapper.updateById(p);
    }
}