2024-09-21 21:58:34 +08:00
|
|
|
package top.weiyuexin.mapper;
|
|
|
|
|
|
|
|
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
|
|
|
|
import org.apache.ibatis.annotations.Mapper;
|
|
|
|
import top.weiyuexin.pojo.Contest;
|
|
|
|
|
2024-09-26 10:53:04 +08:00
|
|
|
|
2024-09-21 21:58:34 +08:00
|
|
|
@Mapper
|
|
|
|
public interface ContestMapper extends BaseMapper<Contest> {
|
|
|
|
}
|