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; /** *

* 教练 Mapper 接口 *

* * @author jqs * @since 2023-07-05 */ public interface CoachMapper extends BaseMapper { List listAll(@Param("query") CoachQuery query); Object changeState(@Param("ids") List ids, @Param("state") Integer state); }