InterviewQuestionMapper.java 354 字节
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15
package com.kwan.springbootkwan.mapper;

import com.baomidou.mybatisplus.core.mapper.BaseMapper;
import com.kwan.springbootkwan.entity.InterviewQuestion;

/**
 * 面试题(InterviewQuestion)表数据库访问层
 *
 * @author makejava
 * @since 2023-09-08 16:31:51
 */
public interface InterviewQuestionMapper extends BaseMapper<InterviewQuestion> {

}