MatchScheduleService.java
494 Bytes
package com.zhongzhi.service;
import com.zhongzhi.model.MatchScheduleDO;
import com.baomidou.mybatisplus.extension.service.IService;
import java.util.List;
/**
* <p>
* 时间安排 服务类
* </p>
*
* @author DengMin
* @since 2021-05-27
*/
public interface MatchScheduleService extends IService<MatchScheduleDO> {
List<MatchScheduleDO> getMatchSchedule(MatchScheduleDO matchScheduleDO);
List<MatchScheduleDO> getVocationalMatchSchedule(MatchScheduleDO matchScheduleDO);
}