无关风月
2025-04-11 1d9f7b0cf4251f3058badb07dd7a2bc06b6bc09a
cloud-server-activity/src/main/java/com/dsh/activity/service/impl/BenefitsVideoClassificationServiceImpl.java
@@ -20,6 +20,7 @@
public class BenefitsVideoClassificationServiceImpl extends ServiceImpl<BenefitsVideoClassificationMapper, BenefitsVideoClassification> implements IBenefitsVideoClassificationService {
    @Autowired
    private BenefitsVideoClassificationMapper benefitsVideoClassificationMapper;
    @Override
    public List<TQueryBenefitsVO> listAll(QueryBenefitsVedioVO vo) {
        return benefitsVideoClassificationMapper.listAll(vo);
@@ -29,6 +30,6 @@
    public Object changeState(BenefitsVedioChangeStateVO vo) {
        List<Integer> ids = vo.getIds();
        Integer state = vo.getState();
        return benefitsVideoClassificationMapper.changeState(ids,state);
        return benefitsVideoClassificationMapper.changeState(ids, state);
    }
}