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