oj/oj-spring-boot/src/main/java/top/weiyuexin/mapper/ContestMapper.java

18 lines
423 B
Java
Raw Normal View History

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;
/**
* @PackageName: top.weiyuexin.mapper
* @ProjectName: oj-spring-boot
* @ClassName: ContestMapper
* @Author: Weiyuexin
* @Email: 3022422894@qq.com
* @Date: 2023/4/19 14:58
*/
@Mapper
public interface ContestMapper extends BaseMapper<Contest> {
}