ChatbotMapper.java 305 字节
Newer Older
1 2 3 4 5 6 7 8 9 10 11
package com.kwan.springbootkwan.mapper;

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

/**
 * (Chatbot)表数据库访问层
 *
 * @author makejava
 * @since 2023-07-11 18:02:28
 */
12
public interface ChatbotMapper extends BaseMapper<Chatbot> {
13 14 15

}