package com.dsh.account.mapper;
|
|
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
|
import com.dsh.account.entity.Coach;
|
import com.dsh.account.model.query.coachQuery.CoachQuery;
|
import com.dsh.account.model.vo.CoachSerchVO;
|
import org.apache.ibatis.annotations.Param;
|
|
import java.util.List;
|
|
/**
|
* <p>
|
* 教练 Mapper 接口
|
* </p>
|
*
|
* @author jqs
|
* @since 2023-07-05
|
*/
|
public interface CoachMapper extends BaseMapper<Coach> {
|
|
List<CoachSerchVO> listAll(@Param("query") CoachQuery query);
|
|
Object changeState(@Param("ids") List<Integer> ids, @Param("state") Integer state);
|
}
|