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.
23 lines
724 B
Java
23 lines
724 B
Java
package com.supervision.service.impl;
|
|
|
|
import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl;
|
|
import com.supervision.model.AskTemplateQuestionLibrary;
|
|
import com.supervision.service.AskTemplateQuestionLibraryService;
|
|
import com.supervision.mapper.AskTemplateQuestionLibraryMapper;
|
|
import org.springframework.stereotype.Service;
|
|
|
|
/**
|
|
* @author flevance
|
|
* @description 针对表【vp_ask_template_question_library(诊断问询意图问题库)】的数据库操作Service实现
|
|
* @createDate 2023-11-03 11:13:26
|
|
*/
|
|
@Service
|
|
public class AskTemplateQuestionLibraryServiceImpl extends ServiceImpl<AskTemplateQuestionLibraryMapper, AskTemplateQuestionLibrary>
|
|
implements AskTemplateQuestionLibraryService{
|
|
|
|
}
|
|
|
|
|
|
|
|
|