package com.zhongzhi.service.impl; import com.zhongzhi.model.MatchScheduleDO; import com.zhongzhi.dao.MatchScheduleDAO; import com.zhongzhi.service.MatchScheduleService; import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl; import org.springframework.stereotype.Service; /** * <p> * 时间安排 服务实现类 * </p> * * @author DengMin * @since 2021-05-27 */ @Service public class MatchScheduleServiceImpl extends ServiceImpl<MatchScheduleDAO, MatchScheduleDO> implements MatchScheduleService { }