44323
2023-11-27 aa925d851857f50eff0556411366690d9a78a0e5
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
package com.dsh.activity.mapper;
 
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
import com.dsh.activity.entity.BenefitsVideoClassification;
import com.dsh.activity.model.QueryBenefitsVedioVO;
import com.dsh.activity.model.TQueryBenefitsVO;
import org.apache.ibatis.annotations.Param;
 
import java.util.List;
 
/**
 * @author zhibing.pu
 * @date 2023/7/11 17:30
 */
public interface BenefitsVideoClassificationMapper extends BaseMapper<BenefitsVideoClassification> {
    List<TQueryBenefitsVO> listAll(@Param("query") QueryBenefitsVedioVO vo);
 
    Object changeState(@Param("ids") List<Integer> ids, @Param("type") Integer state);
}