| | |
| | | public class BenefitsVideoClassificationServiceImpl extends ServiceImpl<BenefitsVideoClassificationMapper, BenefitsVideoClassification> implements IBenefitsVideoClassificationService { |
| | | @Autowired |
| | | private BenefitsVideoClassificationMapper benefitsVideoClassificationMapper; |
| | | |
| | | @Override |
| | | public List<TQueryBenefitsVO> listAll(QueryBenefitsVedioVO vo) { |
| | | return benefitsVideoClassificationMapper.listAll(vo); |
| | |
| | | public Object changeState(BenefitsVedioChangeStateVO vo) { |
| | | List<Integer> ids = vo.getIds(); |
| | | Integer state = vo.getState(); |
| | | return benefitsVideoClassificationMapper.changeState(ids,state); |
| | | return benefitsVideoClassificationMapper.changeState(ids, state); |
| | | } |
| | | } |