1234567891011121314151617181920212223242526272829303132333435363738 |
- // Code generated by gorm.io/gen. DO NOT EDIT.
- // Code generated by gorm.io/gen. DO NOT EDIT.
- // Code generated by gorm.io/gen. DO NOT EDIT.
- package model
- import (
- "time"
- )
- const TableNameMismatchRecord = "mismatch_records"
- // MismatchRecord mapped from table <mismatch_records>
- type MismatchRecord struct {
- ID string `gorm:"column:id;primaryKey;comment:主键id" json:"id"` // 主键id
- ExternalID string `gorm:"column:external_id;not null;comment:外部id" json:"external_id"` // 外部id
- IndustryType int64 `gorm:"column:industry_type;not null;comment:评分规则代码 0 通用 1 教育" json:"industry_type"` // 评分规则代码 0 通用 1 教育
- ChatHistory string `gorm:"column:chat_history;not null;comment:通话记录" json:"chat_history"` // 通话记录
- Missed string `gorm:"column:missed;not null;comment:未匹配内容" json:"missed"` // 未匹配内容
- Ignore int64 `gorm:"column:ignore;not null;comment:0 自动过滤(默认) 1 手动标记忽略 2 不忽略强制分析" json:"ignore"` // 0 自动过滤(默认) 1 手动标记忽略 2 不忽略强制分析
- LlmIgnore int64 `gorm:"column:llm_ignore;not null;comment:0 未过滤 1被忽略 2未被忽略" json:"llm_ignore"` // 0 未过滤 1被忽略 2未被忽略
- OrgID int64 `gorm:"column:org_id;not null;comment:机构 ID" json:"org_id"` // 机构 ID
- Status int64 `gorm:"column:status;not null;comment:状态 1 入库 2 已判断 3 已回调" json:"status"` // 状态 1 入库 2 已判断 3 已回调
- IgnoreResponseData string `gorm:"column:ignore_response_data" json:"ignore_response_data"`
- RequestData string `gorm:"column:request_data" json:"request_data"`
- ResponseData string `gorm:"column:response_data" json:"response_data"`
- CreatedAt time.Time `gorm:"column:created_at;default:CURRENT_TIMESTAMP;comment:Create Time | 创建日期" json:"created_at"` // Create Time | 创建日期
- UpdatedAt time.Time `gorm:"column:updated_at;default:CURRENT_TIMESTAMP;comment:Update Time | 修改日期" json:"updated_at"` // Update Time | 修改日期
- UserIntent string `gorm:"column:user_intent;comment:针对未匹配内容,推理用户的真实目的" json:"user_intent"` // 针对未匹配内容,推理用户的真实目的
- SimilarReply string `gorm:"column:similar_reply;comment:针对未匹配内容,生成类似的回复" json:"similar_reply"` // 针对未匹配内容,生成类似的回复
- Keywords string `gorm:"column:keywords;comment:生成辅助关键词" json:"keywords"` // 生成辅助关键词
- Regular string `gorm:"column:regular;comment:生成辅助正则表达式" json:"regular"` // 生成辅助正则表达式
- }
- // TableName MismatchRecord's table name
- func (*MismatchRecord) TableName() string {
- return TableNameMismatchRecord
- }
|