增加实体类
This commit is contained in:
@@ -48,6 +48,12 @@ public class TmCorpusQuestionReport {
|
||||
@TableField("business_type")
|
||||
private String businessType;
|
||||
|
||||
/**
|
||||
* 用户需求
|
||||
*/
|
||||
@TableField("user_demand")
|
||||
private String userDemand;
|
||||
|
||||
/**
|
||||
* 分析结果
|
||||
*/
|
||||
|
||||
@@ -0,0 +1,98 @@
|
||||
package com.volvo.ai.analytic.center.entity;
|
||||
|
||||
import com.baomidou.mybatisplus.annotation.IdType;
|
||||
import com.baomidou.mybatisplus.annotation.TableField;
|
||||
import com.baomidou.mybatisplus.annotation.TableId;
|
||||
import com.baomidou.mybatisplus.annotation.TableName;
|
||||
import lombok.Data;
|
||||
|
||||
import java.util.Date;
|
||||
|
||||
/**
|
||||
* 语料分析初步总结表
|
||||
*/
|
||||
@Data
|
||||
@TableName("tm_corpus_question_summary_report")
|
||||
public class TmCorpusQuestionSummaryReport {
|
||||
|
||||
private static final long serialVersionUID = 1L;
|
||||
|
||||
/**
|
||||
* 主键id
|
||||
*/
|
||||
@TableId(value = "id", type = IdType.AUTO)
|
||||
private Long id;
|
||||
|
||||
/**
|
||||
* 主类别
|
||||
*/
|
||||
@TableField("main_category")
|
||||
private String mainCategory;
|
||||
|
||||
/**
|
||||
* 子类别
|
||||
*/
|
||||
@TableField("sub_category")
|
||||
private String subCategory;
|
||||
|
||||
/**
|
||||
* 初步结果
|
||||
*/
|
||||
@TableField("preliminary_summary_results")
|
||||
private String preliminarySummaryResults;
|
||||
|
||||
/**
|
||||
* 原语料时间
|
||||
*/
|
||||
@TableField("source_time")
|
||||
private Date sourceTime;
|
||||
|
||||
/**
|
||||
* 删除标识(0-未删除,1-已删除)
|
||||
*/
|
||||
@TableField("is_deleted")
|
||||
private Integer isDeleted;
|
||||
|
||||
/**
|
||||
* 记录版本号,即乐观锁
|
||||
*/
|
||||
@TableField("versions")
|
||||
private Integer versions;
|
||||
|
||||
/**
|
||||
* 创建人
|
||||
*/
|
||||
@TableField("create_by")
|
||||
private String createBy;
|
||||
|
||||
/**
|
||||
* 更新人
|
||||
*/
|
||||
@TableField("update_by")
|
||||
private String updateBy;
|
||||
|
||||
/**
|
||||
* 创建sql人
|
||||
*/
|
||||
@TableField("create_sqlby")
|
||||
private String createSqlby;
|
||||
|
||||
/**
|
||||
* 更新sql人
|
||||
*/
|
||||
@TableField("update_sqlby")
|
||||
private String updateSqlby;
|
||||
|
||||
/**
|
||||
* 创建时间
|
||||
*/
|
||||
@TableField("create_time")
|
||||
private Date createTime;
|
||||
|
||||
/**
|
||||
* 更新时间
|
||||
*/
|
||||
@TableField("update_time")
|
||||
private Date updateTime;
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user