Blame view

MatchScheduleDAO.java 360 Bytes
涂亚平 committed
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18
package com.zhongzhi.dao;

import com.zhongzhi.model.MatchScheduleDO;
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
import org.springframework.stereotype.Repository;

/**
 * <p>
 * 时间安排 Mapper 接口
 * </p>
 *
 * @author DengMin
 * @since 2021-05-27
 */
@Repository
public interface MatchScheduleDAO extends BaseMapper<MatchScheduleDO> {

}