TimeTableMapper.java 509 Bytes
package com.subsidy.mapper;

import com.subsidy.model.TimeTableDO;
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
import com.subsidy.vo.timetable.QueryTablesDetailVO;
import org.springframework.stereotype.Repository;

import java.util.List;

/**
 * <p>
 *  Mapper 接口
 * </p>
 *
 * @author Tuyp
 * @since 2025-10-28
 */
 @Repository
public interface TimeTableMapper extends BaseMapper<TimeTableDO> {

  void clearProjectId(Long id);

  List<QueryTablesDetailVO> queryTablesDetail(Long matchId);
}