44323
2023-12-12 d9a46d01c5a7a70589a49e5fb5578e5a20b3dc64
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);
    }
}