Blame view

MatchScheduleService.java 304 Bytes
涂亚平 committed
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16
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> {

}