|
@@ -10,16 +10,17 @@ import (
|
|
|
|
|
|
// RagEtaReport eta报告
|
|
|
type RagEtaReport struct {
|
|
|
- RagEtaReportID int `gorm:"primaryKey;column:rag_eta_report_id" json:"-"`
|
|
|
- ReportID int `gorm:"column:report_id" json:"reportId"` // 报告id
|
|
|
- ReportChapterID int `gorm:"column:report_chapter_id" json:"reportChapterId"` // 报告章节id
|
|
|
- Title string `gorm:"column:title" json:"title"` // 报告标题(完整标题,含期数)
|
|
|
- Author string `gorm:"column:author" json:"author"` // 作者
|
|
|
- TextContent string `gorm:"column:text_content" json:"textContent"` // 报告内容(去除html)
|
|
|
- VectorKey string `gorm:"column:vector_key" json:"vectorKey"` // 向量库的key
|
|
|
- PublishTime time.Time `gorm:"column:publish_time" json:"publishTime"` // 发布时间
|
|
|
- ModifyTime time.Time `gorm:"column:modify_time" json:"modifyTime"` // 修改时间
|
|
|
- CreateTime time.Time `gorm:"column:create_time" json:"createTime"` // 新增时间
|
|
|
+ RagEtaReportId int `gorm:"primaryKey;column:rag_eta_report_id" `
|
|
|
+ ReportId int `gorm:"column:report_id" description:"报告id"`
|
|
|
+ ReportChapterId int `gorm:"column:report_chapter_id" description:"报告章节id"`
|
|
|
+ Title string `gorm:"column:title" description:"报告标题(完整标题,含期数)"`
|
|
|
+ Author string `gorm:"column:author" description:"作者"`
|
|
|
+ TextContent string `gorm:"column:text_content" description:"报告内容(去除html)"`
|
|
|
+ VectorKey string `gorm:"column:vector_key" description:"向量库的key"`
|
|
|
+ IsDeleted int `gorm:"column:is_deleted;type:tinyint(4);comment:是否删除,0:未删除,1:已删除;default:0;" description:"否删除,0:未删除,1:已删除"`
|
|
|
+ PublishTime time.Time `gorm:"column:publish_time" description:"发布时间"`
|
|
|
+ ModifyTime time.Time `gorm:"column:modify_time" description:"修改时间"`
|
|
|
+ CreateTime time.Time `gorm:"column:create_time" description:"新增时间"`
|
|
|
}
|
|
|
|
|
|
// TableName get sql table name.获取数据库表名
|
|
@@ -36,6 +37,7 @@ var RagEtaReportColumns = struct {
|
|
|
Author string
|
|
|
TextContent string
|
|
|
VectorKey string
|
|
|
+ IsDeleted string
|
|
|
PublishTime string
|
|
|
ModifyTime string
|
|
|
CreateTime string
|
|
@@ -47,22 +49,25 @@ var RagEtaReportColumns = struct {
|
|
|
Author: "author",
|
|
|
TextContent: "text_content",
|
|
|
VectorKey: "vector_key",
|
|
|
+ IsDeleted: "is_deleted",
|
|
|
PublishTime: "publish_time",
|
|
|
ModifyTime: "modify_time",
|
|
|
CreateTime: "create_time",
|
|
|
}
|
|
|
|
|
|
type RagEtaReportView struct {
|
|
|
- RagEtaReportID int `gorm:"primaryKey;column:rag_eta_report_id" json:"-"`
|
|
|
- ReportID int `gorm:"column:report_id" json:"reportId"` // 报告id
|
|
|
- ReportChapterID int `gorm:"column:report_chapter_id" json:"reportChapterId"` // 报告章节id
|
|
|
- Title string `gorm:"column:title" json:"title"` // 报告标题(完整标题,含期数)
|
|
|
- Author string `gorm:"column:author" json:"author"` // 作者
|
|
|
- TextContent string `gorm:"column:text_content" json:"textContent"` // 报告内容(去除html)
|
|
|
- VectorKey string `gorm:"column:vector_key" json:"vectorKey"` // 向量库的key
|
|
|
- PublishTime time.Time `gorm:"column:publish_time" json:"publishTime"` // 发布时间
|
|
|
- ModifyTime time.Time `gorm:"column:modify_time" json:"modifyTime"` // 修改时间
|
|
|
- CreateTime time.Time `gorm:"column:create_time" json:"createTime"` // 新增时间
|
|
|
+ RagEtaReportId int `gorm:"primaryKey;column:rag_eta_report_id" `
|
|
|
+ ReportId int `gorm:"column:report_id" description:"报告id"`
|
|
|
+ ReportChapterId int `gorm:"column:report_chapter_id" description:"报告章节id"`
|
|
|
+ Title string `gorm:"column:title" description:"报告标题(完整标题,含期数)"`
|
|
|
+ Author string `gorm:"column:author" description:"作者"`
|
|
|
+ Content string `gorm:"column:content" description:"报告内容(包含html)"`
|
|
|
+ TextContent string `gorm:"column:text_content" description:"报告内容(去除html)"`
|
|
|
+ VectorKey string `gorm:"column:vector_key" description:"向量库的key"`
|
|
|
+ IsDeleted int `gorm:"column:is_deleted;type:tinyint(4);comment:是否删除,0:未删除,1:已删除;default:0;" description:"否删除,0:未删除,1:已删除"`
|
|
|
+ PublishTime string `gorm:"column:publish_time" description:"发布时间"`
|
|
|
+ ModifyTime string `gorm:"column:modify_time" description:"修改时间"`
|
|
|
+ CreateTime string `gorm:"column:create_time" description:"新增时间"`
|
|
|
}
|
|
|
|
|
|
func (m *RagEtaReport) ToView() RagEtaReportView {
|
|
@@ -78,16 +83,16 @@ func (m *RagEtaReport) ToView() RagEtaReportView {
|
|
|
modifyTime = m.ModifyTime.Format(utils.FormatDateTime)
|
|
|
}
|
|
|
return RagEtaReportView{
|
|
|
- RagEtaReportID: 0,
|
|
|
- ReportID: 0,
|
|
|
- ReportChapterID: 0,
|
|
|
- Title: "",
|
|
|
- Author: "",
|
|
|
- TextContent: "",
|
|
|
- VectorKey: "",
|
|
|
- PublishTime: time.Time{},
|
|
|
- ModifyTime: time.Time{},
|
|
|
- CreateTime: time.Time{},
|
|
|
+ RagEtaReportId: m.RagEtaReportId,
|
|
|
+ ReportId: m.ReportId,
|
|
|
+ ReportChapterId: m.ReportChapterId,
|
|
|
+ Title: m.Title,
|
|
|
+ Author: m.Author,
|
|
|
+ TextContent: m.TextContent,
|
|
|
+ VectorKey: m.VectorKey,
|
|
|
+ PublishTime: publishTime,
|
|
|
+ ModifyTime: modifyTime,
|
|
|
+ CreateTime: createTime,
|
|
|
}
|
|
|
}
|
|
|
|
|
@@ -122,7 +127,7 @@ func (m *RagEtaReport) GetListByCondition(field, condition string, pars []interf
|
|
|
if field == "" {
|
|
|
field = "*"
|
|
|
}
|
|
|
- sqlStr := fmt.Sprintf(`SELECT %s FROM %s WHERE 1=1 AND is_deleted=0 %s order by article_create_time desc,wechat_article_id desc LIMIT ?,?`, field, m.TableName(), condition)
|
|
|
+ sqlStr := fmt.Sprintf(`SELECT %s FROM %s WHERE is_deleted=0 %s order by publish_time desc,report_id desc,report_chapter_id desc LIMIT ?,?`, field, m.TableName(), condition)
|
|
|
pars = append(pars, startSize, pageSize)
|
|
|
err = global.DbMap[utils.DbNameAI].Raw(sqlStr, pars...).Find(&items).Error
|
|
|
|
|
@@ -147,7 +152,7 @@ func (m *RagEtaReport) GetPageListByCondition(condition string, pars []interface
|
|
|
return
|
|
|
}
|
|
|
if total > 0 {
|
|
|
- items, err = m.GetListByCondition(`wechat_article_id,wechat_platform_id,fake_id,title,link,cover_url,description,country,province,city,article_create_time,modify_time,create_time`, condition, pars, startSize, pageSize)
|
|
|
+ items, err = m.GetListByCondition(``, condition, pars, startSize, pageSize)
|
|
|
}
|
|
|
|
|
|
return
|