17 lines
318 B
Java
17 lines
318 B
Java
|
package com.jwl.driver.server.mapper;
|
||
|
|
||
|
import com.jwl.driver.server.entity.TdQuestion;
|
||
|
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
|
||
|
|
||
|
/**
|
||
|
* <p>
|
||
|
* 题库; Mapper 接口
|
||
|
* </p>
|
||
|
*
|
||
|
* @author Automated procedures
|
||
|
* @since 2023-08-10
|
||
|
*/
|
||
|
public interface TdQuestionMapper extends BaseMapper<TdQuestion> {
|
||
|
|
||
|
}
|