You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
488 B
Java
19 lines
488 B
Java
2 years ago
|
package com.supervision.mapper;
|
||
|
|
||
|
import com.supervision.model.AskTemplateQuestionLibrary;
|
||
|
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
|
||
|
|
||
|
/**
|
||
|
* @author flevance
|
||
|
* @description 针对表【vp_ask_template_question_library(诊断问询意图问题库)】的数据库操作Mapper
|
||
|
* @createDate 2023-11-03 11:13:26
|
||
|
* @Entity com.supervision.model.AskTemplateQuestionLibrary
|
||
|
*/
|
||
|
public interface AskTemplateQuestionLibraryMapper extends BaseMapper<AskTemplateQuestionLibrary> {
|
||
|
|
||
|
}
|
||
|
|
||
|
|
||
|
|
||
|
|