Chatbot.java 447 字节
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22
package com.kwan.springbootkwan.entity;

import com.baomidou.mybatisplus.extension.activerecord.Model;
import lombok.Data;

import java.util.Date;

/**
 * (Chatbot)表实体类
 *
 * @author : qinyingjie
 * @version : 2.2.0
 * @date : 2023/7/11 18:03
 */
@Data
@SuppressWarnings("serial")
public class Chatbot extends Model<Chatbot> {
    private Integer id;
    private String question;
    private String response;
    private Date createTime;
}