package com.dsh.account.service.impl; import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl; import com.dsh.account.entity.Coach; import com.dsh.account.mapper.CoachMapper; import com.dsh.account.model.query.coachQuery.CoachQuery; import com.dsh.account.model.vo.CoachChangeStateVO; import com.dsh.account.model.vo.CoachSerchVO; import com.dsh.account.service.CoachService; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.stereotype.Service; import java.util.List; /** *
* 教练 服务实现类 *
* * @author jqs * @since 2023-07-05 */ @Service public class CoachServiceImpl extends ServiceImpl