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.

111 lines
1.9 KiB
Java

package com.supervision.domain;
import com.baomidou.mybatisplus.annotation.TableField;
import com.baomidou.mybatisplus.annotation.TableId;
import com.baomidou.mybatisplus.annotation.TableName;
import java.io.Serializable;
import java.math.BigDecimal;
import java.time.LocalDateTime;
import lombok.Data;
/**
*
* @TableName ir_session_history
*/
@TableName(value ="ir_session_history", schema = "interro_robot")
@Data
public class IrSessionHistory implements Serializable {
/**
*
*/
@TableId
private String id;
/**
* ID
*/
private String sessionId;
/**
*
*/
private String userQuestion;
/**
* ID(ID)
*/
private String userQuestionVoiceId;
/**
*
*/
private String answer;
/**
* 1: 2 3
*/
private Integer answerType;
/**
* ID
*/
private String answerVoiceId;
/**
* ID,,;
*/
private String answerFileId;
/**
* ID
*/
private String matchKnowledgeId;
/**
* ID
*/
private String userId;
/**
*
*/
private BigDecimal threshold;
/**
* ( 1 2 3),
*/
private Integer scoreCause;
/**
*
*/
private LocalDateTime answerTime;
/**
* (1 2)
*/
private Integer dealState;
/**
*
*/
private String createUserId;
/**
*
*/
private LocalDateTime createTime;
/**
*
*/
private String updateUserId;
/**
*
*/
private LocalDateTime updateTime;
@TableField(exist = false)
private static final long serialVersionUID = 1L;
}