wechat_article_abstract.go 12 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254
  1. package rag
  2. import (
  3. "database/sql"
  4. "eta/eta_api/global"
  5. "eta/eta_api/utils"
  6. "fmt"
  7. "time"
  8. )
  9. type WechatArticleAbstract struct {
  10. WechatArticleAbstractId int `gorm:"column:wechat_article_abstract_id;type:int(9) UNSIGNED;primaryKey;not null;" description:"wechat_article_abstract_id"`
  11. WechatArticleId int `gorm:"column:wechat_article_id;type:int(9) UNSIGNED;comment:关联的微信报告id;default:0;" description:"关联的微信报告id"`
  12. Content string `gorm:"column:content;type:longtext;comment:摘要内容;" description:"content"` // 摘要内容
  13. Version int `gorm:"column:version;type:int(10) UNSIGNED;comment:版本号;default:1;" description:"版本号"`
  14. VectorKey string `gorm:"column:vector_key;type:varchar(255);comment:向量key标识;" description:"向量key标识"`
  15. ModifyTime time.Time `gorm:"column:modify_time;type:datetime;default:NULL;" description:"modify_time"`
  16. CreateTime time.Time `gorm:"column:create_time;type:datetime;default:NULL;" description:"create_time"`
  17. }
  18. // TableName get sql table name.获取数据库表名
  19. func (m *WechatArticleAbstract) TableName() string {
  20. return "wechat_article_abstract"
  21. }
  22. // WechatArticleAbstractColumns get sql column name.获取数据库列名
  23. var WechatArticleAbstractColumns = struct {
  24. WechatArticleAbstractID string
  25. WechatArticleID string
  26. Content string
  27. Version string
  28. ModifyTime string
  29. CreateTime string
  30. }{
  31. WechatArticleAbstractID: "wechat_article_abstract_id",
  32. WechatArticleID: "wechat_article_id",
  33. Content: "content",
  34. Version: "version",
  35. ModifyTime: "modify_time",
  36. CreateTime: "create_time",
  37. }
  38. func (m *WechatArticleAbstract) Create() (err error) {
  39. err = global.DbMap[utils.DbNameAI].Create(&m).Error
  40. return
  41. }
  42. func (m *WechatArticleAbstract) Update(updateCols []string) (err error) {
  43. err = global.DbMap[utils.DbNameAI].Select(updateCols).Updates(&m).Error
  44. return
  45. }
  46. func (m *WechatArticleAbstract) Del() (err error) {
  47. err = global.DbMap[utils.DbNameAI].Delete(&m).Error
  48. return
  49. }
  50. func (m *WechatArticleAbstract) GetById(id int) (item *WechatArticleAbstract, err error) {
  51. err = global.DbMap[utils.DbNameAI].Where(fmt.Sprintf("%s = ?", WechatArticleAbstractColumns.WechatArticleAbstractID), id).First(&item).Error
  52. return
  53. }
  54. func (m *WechatArticleAbstract) GetByIdList(idList []int) (items []*WechatArticleAbstract, err error) {
  55. err = global.DbMap[utils.DbNameAI].Where(fmt.Sprintf("%s in (?) ", WechatArticleAbstractColumns.WechatArticleAbstractID), idList).Find(&items).Error
  56. return
  57. }
  58. func (m *WechatArticleAbstract) GetListByCondition(field, condition string, pars []interface{}, startSize, pageSize int) (items []*WechatArticleAbstract, err error) {
  59. if field == "" {
  60. field = "*"
  61. }
  62. sqlStr := fmt.Sprintf(`SELECT %s FROM %s WHERE 1=1 %s order by wechat_article_abstract_id desc LIMIT ?,?`, field, m.TableName(), condition)
  63. pars = append(pars, startSize, pageSize)
  64. err = global.DbMap[utils.DbNameAI].Raw(sqlStr, pars...).Find(&items).Error
  65. return
  66. }
  67. func (m *WechatArticleAbstract) DelByIdList(idList []int) (err error) {
  68. if len(idList) <= 0 {
  69. return
  70. }
  71. sqlStr := fmt.Sprintf(`delete from %s where %s in (?)`, m.TableName(), WechatArticleAbstractColumns.WechatArticleAbstractID)
  72. err = global.DbMap[utils.DbNameAI].Exec(sqlStr, idList).Error
  73. return
  74. }
  75. // GetByWechatArticleId
  76. // @Description: 根据报告id获取摘要
  77. // @author: Roc
  78. // @receiver m
  79. // @datetime 2025-03-07 10:00:59
  80. // @param id int
  81. // @return item *WechatArticleAbstract
  82. // @return err error
  83. func (m *WechatArticleAbstract) GetByWechatArticleId(id int) (item *WechatArticleAbstract, err error) {
  84. err = global.DbMap[utils.DbNameAI].Where(fmt.Sprintf("%s = ?", WechatArticleAbstractColumns.WechatArticleID), id).Order(fmt.Sprintf(`%s DESC`, WechatArticleAbstractColumns.WechatArticleAbstractID)).First(&item).Error
  85. return
  86. }
  87. type WechatArticleAbstractView struct {
  88. WechatArticleAbstractId int `gorm:"column:wechat_article_abstract_id;type:int(9) UNSIGNED;primaryKey;not null;" description:"wechat_article_abstract_id"`
  89. WechatArticleId int `gorm:"column:wechat_article_id;type:int(9) UNSIGNED;comment:关联的微信报告id;default:0;" description:"关联的微信报告id"`
  90. Abstract string `gorm:"column:abstract;type:longtext;comment:摘要内容;" description:"摘要内容"` //
  91. Version int `gorm:"column:version;type:int(10) UNSIGNED;comment:版本号;default:1;" description:"版本号"`
  92. VectorKey string `gorm:"column:vector_key;type:varchar(255);comment:向量key标识;" description:"向量key标识"`
  93. ModifyTime string `gorm:"column:modify_time;type:datetime;default:NULL;" description:"modify_time"`
  94. CreateTime string `gorm:"column:create_time;type:datetime;default:NULL;" description:"create_time"`
  95. Title string `gorm:"column:title;type:varchar(255);comment:标题;" description:"标题"`
  96. Link string `gorm:"column:link;type:varchar(255);comment:链接;" description:"链接"`
  97. TagId int `gorm:"column:tag_id;type:int(9) UNSIGNED;comment:品种id;default:0;" description:"品种id"`
  98. }
  99. type WechatArticleAbstractItem struct {
  100. WechatArticleAbstractId int `gorm:"column:wechat_article_abstract_id;type:int(9) UNSIGNED;primaryKey;not null;" description:"wechat_article_abstract_id"`
  101. WechatArticleId int `gorm:"column:wechat_article_id;type:int(9) UNSIGNED;comment:关联的微信报告id;default:0;" description:"关联的微信报告id"`
  102. Abstract string `gorm:"column:abstract;type:longtext;comment:摘要内容;" description:"摘要内容"` //
  103. Version int `gorm:"column:version;type:int(10) UNSIGNED;comment:版本号;default:1;" description:"版本号"`
  104. VectorKey string `gorm:"column:vector_key;type:varchar(255);comment:向量key标识;" description:"向量key标识"`
  105. ModifyTime time.Time `gorm:"column:modify_time;type:datetime;default:NULL;" description:"modify_time"`
  106. CreateTime time.Time `gorm:"column:create_time;type:datetime;default:NULL;" description:"create_time"`
  107. Title string `gorm:"column:title;type:varchar(255);comment:标题;" description:"标题"`
  108. Link string `gorm:"column:link;type:varchar(255);comment:链接;" description:"链接"`
  109. TagId int `gorm:"column:tag_id;type:int(9) UNSIGNED;comment:品种id;default:0;" description:"品种id"`
  110. }
  111. func (m *WechatArticleAbstractItem) ToView() WechatArticleAbstractView {
  112. return WechatArticleAbstractView{
  113. WechatArticleAbstractId: m.WechatArticleAbstractId,
  114. WechatArticleId: m.WechatArticleId,
  115. Abstract: m.Abstract,
  116. Version: m.Version,
  117. VectorKey: m.VectorKey,
  118. ModifyTime: utils.DateStrToDateTimeStr(m.ModifyTime),
  119. CreateTime: utils.DateStrToDateTimeStr(m.CreateTime),
  120. Title: m.Title,
  121. Link: m.Link,
  122. TagId: m.TagId,
  123. }
  124. }
  125. func (m *WechatArticleAbstract) WechatArticleAbstractItem(list []*WechatArticleAbstractItem) (wechatArticleViewList []WechatArticleAbstractView) {
  126. wechatArticleViewList = make([]WechatArticleAbstractView, 0)
  127. for _, v := range list {
  128. wechatArticleViewList = append(wechatArticleViewList, v.ToView())
  129. }
  130. return
  131. }
  132. func (m *WechatArticleAbstract) GetListByPlatformCondition(field, condition string, pars []interface{}, startSize, pageSize int) (items []*WechatArticleAbstractItem, err error) {
  133. if field == "" {
  134. field = "*"
  135. }
  136. sqlStr := fmt.Sprintf(`SELECT %s FROM %s AS a
  137. JOIN wechat_article AS b ON a.wechat_article_id=b.wechat_article_id
  138. JOIN wechat_platform AS c ON b.wechat_platform_id=c.wechat_platform_id
  139. WHERE 1=1 AND b.is_deleted=0 %s order by a.modify_time DESC,a.wechat_article_abstract_id DESC LIMIT ?,?`, field, m.TableName(), condition)
  140. pars = append(pars, startSize, pageSize)
  141. err = global.DbMap[utils.DbNameAI].Raw(sqlStr, pars...).Find(&items).Error
  142. return
  143. }
  144. func (m *WechatArticleAbstract) GetCountByPlatformCondition(condition string, pars []interface{}) (total int, err error) {
  145. var intNull sql.NullInt64
  146. sqlStr := fmt.Sprintf(`SELECT COUNT(1) total FROM %s AS a
  147. JOIN wechat_article AS b ON a.wechat_article_id=b.wechat_article_id
  148. JOIN wechat_platform AS c ON b.wechat_platform_id=c.wechat_platform_id
  149. WHERE 1=1 AND b.is_deleted=0 %s`, m.TableName(), condition)
  150. err = global.DbMap[utils.DbNameAI].Raw(sqlStr, pars...).Scan(&intNull).Error
  151. if err == nil && intNull.Valid {
  152. total = int(intNull.Int64)
  153. }
  154. return
  155. }
  156. func (m *WechatArticleAbstract) GetPageListByPlatformCondition(condition string, pars []interface{}, startSize, pageSize int) (total int, items []*WechatArticleAbstractItem, err error) {
  157. total, err = m.GetCountByPlatformCondition(condition, pars)
  158. if err != nil {
  159. return
  160. }
  161. if total > 0 {
  162. items, err = m.GetListByPlatformCondition(`a.wechat_article_abstract_id,a.wechat_article_id,a.content AS abstract,a.version,a.vector_key,b.title,b.link,a.modify_time,a.create_time`, condition, pars, startSize, pageSize)
  163. }
  164. return
  165. }
  166. func (m *WechatArticleAbstract) GetListByTagAndPlatformCondition(field, condition string, pars []interface{}, startSize, pageSize int) (items []*WechatArticleAbstractItem, err error) {
  167. if field == "" {
  168. field = "*"
  169. }
  170. sqlStr := fmt.Sprintf(`SELECT %s FROM %s AS a
  171. JOIN wechat_article AS b ON a.wechat_article_id=b.wechat_article_id
  172. JOIN wechat_platform AS c ON b.wechat_platform_id=c.wechat_platform_id
  173. JOIN wechat_platform_tag_mapping AS d ON c.wechat_platform_id=d.wechat_platform_id
  174. WHERE 1=1 AND b.is_deleted=0 %s order by a.modify_time DESC,a.wechat_article_abstract_id DESC LIMIT ?,?`, field, m.TableName(), condition)
  175. pars = append(pars, startSize, pageSize)
  176. err = global.DbMap[utils.DbNameAI].Raw(sqlStr, pars...).Find(&items).Error
  177. return
  178. }
  179. func (m *WechatArticleAbstract) GetCountByTagAndPlatformCondition(condition string, pars []interface{}) (total int, err error) {
  180. var intNull sql.NullInt64
  181. sqlStr := fmt.Sprintf(`SELECT COUNT(1) total FROM %s AS a
  182. JOIN wechat_article AS b ON a.wechat_article_id=b.wechat_article_id
  183. JOIN wechat_platform AS c ON b.wechat_platform_id=c.wechat_platform_id
  184. JOIN wechat_platform_tag_mapping AS d ON c.wechat_platform_id=d.wechat_platform_id
  185. WHERE 1=1 AND b.is_deleted=0 %s`, m.TableName(), condition)
  186. err = global.DbMap[utils.DbNameAI].Raw(sqlStr, pars...).Scan(&intNull).Error
  187. if err == nil && intNull.Valid {
  188. total = int(intNull.Int64)
  189. }
  190. return
  191. }
  192. func (m *WechatArticleAbstract) GetPageListByTagAndPlatformCondition(condition string, pars []interface{}, startSize, pageSize int) (total int, items []*WechatArticleAbstractItem, err error) {
  193. total, err = m.GetCountByTagAndPlatformCondition(condition, pars)
  194. if err != nil {
  195. return
  196. }
  197. if total > 0 {
  198. items, err = m.GetListByTagAndPlatformCondition(`a.wechat_article_abstract_id,a.wechat_article_id,a.content AS abstract,a.version,a.vector_key,a.modify_time,a.create_time,b.title,b.link,d.tag_id`, condition, pars, startSize, pageSize)
  199. }
  200. return
  201. }
  202. // DelVectorKey
  203. // @Description: 批量删除向量库
  204. // @author: Roc
  205. // @receiver m
  206. // @datetime 2025-03-12 16:47:52
  207. // @param wechatArticleAbstractIdList []int
  208. // @return err error
  209. func (m *WechatArticleAbstract) DelVectorKey(wechatArticleAbstractIdList []int) (err error) {
  210. sqlStr := fmt.Sprintf(`UPDATE %s set vector_key = '' WHERE wechat_article_abstract_id IN (?)`, m.TableName())
  211. err = global.DbMap[utils.DbNameAI].Exec(sqlStr, wechatArticleAbstractIdList).Error
  212. return
  213. }