wechat_article_abstract.go 12 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255
  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. WechatPlatformId int `gorm:"column:wechat_platform_id;type:int(11);comment:归属公众号id;default:0;" description:"归属公众号id"`
  91. Abstract string `gorm:"column:abstract;type:longtext;comment:摘要内容;" description:"摘要内容"` //
  92. Version int `gorm:"column:version;type:int(10) UNSIGNED;comment:版本号;default:1;" description:"版本号"`
  93. VectorKey string `gorm:"column:vector_key;type:varchar(255);comment:向量key标识;" description:"向量key标识"`
  94. ModifyTime string `gorm:"column:modify_time;type:datetime;default:NULL;" description:"modify_time"`
  95. CreateTime string `gorm:"column:create_time;type:datetime;default:NULL;" description:"create_time"`
  96. Title string `gorm:"column:title;type:varchar(255);comment:标题;" description:"标题"`
  97. Link string `gorm:"column:link;type:varchar(255);comment:链接;" description:"链接"`
  98. TagId int `gorm:"column:tag_id;type:int(9) UNSIGNED;comment:品种id;default:0;" description:"品种id"`
  99. }
  100. type WechatArticleAbstractItem struct {
  101. WechatArticleAbstractId int `gorm:"column:wechat_article_abstract_id;type:int(9) UNSIGNED;primaryKey;not null;" description:"wechat_article_abstract_id"`
  102. WechatArticleId int `gorm:"column:wechat_article_id;type:int(9) UNSIGNED;comment:关联的微信报告id;default:0;" description:"关联的微信报告id"`
  103. Abstract string `gorm:"column:abstract;type:longtext;comment:摘要内容;" description:"摘要内容"` //
  104. Version int `gorm:"column:version;type:int(10) UNSIGNED;comment:版本号;default:1;" description:"版本号"`
  105. VectorKey string `gorm:"column:vector_key;type:varchar(255);comment:向量key标识;" description:"向量key标识"`
  106. ModifyTime time.Time `gorm:"column:modify_time;type:datetime;default:NULL;" description:"modify_time"`
  107. CreateTime time.Time `gorm:"column:create_time;type:datetime;default:NULL;" description:"create_time"`
  108. Title string `gorm:"column:title;type:varchar(255);comment:标题;" description:"标题"`
  109. Link string `gorm:"column:link;type:varchar(255);comment:链接;" description:"链接"`
  110. TagId int `gorm:"column:tag_id;type:int(9) UNSIGNED;comment:品种id;default:0;" description:"品种id"`
  111. }
  112. func (m *WechatArticleAbstractItem) ToView() WechatArticleAbstractView {
  113. return WechatArticleAbstractView{
  114. WechatArticleAbstractId: m.WechatArticleAbstractId,
  115. WechatArticleId: m.WechatArticleId,
  116. Abstract: m.Abstract,
  117. Version: m.Version,
  118. VectorKey: m.VectorKey,
  119. ModifyTime: utils.DateStrToDateTimeStr(m.ModifyTime),
  120. CreateTime: utils.DateStrToDateTimeStr(m.CreateTime),
  121. Title: m.Title,
  122. Link: m.Link,
  123. TagId: m.TagId,
  124. }
  125. }
  126. func (m *WechatArticleAbstract) WechatArticleAbstractItem(list []*WechatArticleAbstractItem) (wechatArticleViewList []WechatArticleAbstractView) {
  127. wechatArticleViewList = make([]WechatArticleAbstractView, 0)
  128. for _, v := range list {
  129. wechatArticleViewList = append(wechatArticleViewList, v.ToView())
  130. }
  131. return
  132. }
  133. func (m *WechatArticleAbstract) GetListByPlatformCondition(field, condition string, pars []interface{}, startSize, pageSize int) (items []*WechatArticleAbstractItem, err error) {
  134. if field == "" {
  135. field = "*"
  136. }
  137. sqlStr := fmt.Sprintf(`SELECT %s FROM %s AS a
  138. JOIN wechat_article AS b ON a.wechat_article_id=b.wechat_article_id
  139. JOIN wechat_platform AS c ON b.wechat_platform_id=c.wechat_platform_id
  140. 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)
  141. pars = append(pars, startSize, pageSize)
  142. err = global.DbMap[utils.DbNameAI].Raw(sqlStr, pars...).Find(&items).Error
  143. return
  144. }
  145. func (m *WechatArticleAbstract) GetCountByPlatformCondition(condition string, pars []interface{}) (total int, err error) {
  146. var intNull sql.NullInt64
  147. sqlStr := fmt.Sprintf(`SELECT COUNT(1) total FROM %s AS a
  148. JOIN wechat_article AS b ON a.wechat_article_id=b.wechat_article_id
  149. JOIN wechat_platform AS c ON b.wechat_platform_id=c.wechat_platform_id
  150. WHERE 1=1 AND b.is_deleted=0 %s`, m.TableName(), condition)
  151. err = global.DbMap[utils.DbNameAI].Raw(sqlStr, pars...).Scan(&intNull).Error
  152. if err == nil && intNull.Valid {
  153. total = int(intNull.Int64)
  154. }
  155. return
  156. }
  157. func (m *WechatArticleAbstract) GetPageListByPlatformCondition(condition string, pars []interface{}, startSize, pageSize int) (total int, items []*WechatArticleAbstractItem, err error) {
  158. total, err = m.GetCountByPlatformCondition(condition, pars)
  159. if err != nil {
  160. return
  161. }
  162. if total > 0 {
  163. 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)
  164. }
  165. return
  166. }
  167. func (m *WechatArticleAbstract) GetListByTagAndPlatformCondition(field, condition string, pars []interface{}, startSize, pageSize int) (items []*WechatArticleAbstractItem, err error) {
  168. if field == "" {
  169. field = "*"
  170. }
  171. sqlStr := fmt.Sprintf(`SELECT %s FROM %s AS a
  172. JOIN wechat_article AS b ON a.wechat_article_id=b.wechat_article_id
  173. JOIN wechat_platform AS c ON b.wechat_platform_id=c.wechat_platform_id
  174. JOIN wechat_platform_tag_mapping AS d ON c.wechat_platform_id=d.wechat_platform_id
  175. 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)
  176. pars = append(pars, startSize, pageSize)
  177. err = global.DbMap[utils.DbNameAI].Raw(sqlStr, pars...).Find(&items).Error
  178. return
  179. }
  180. func (m *WechatArticleAbstract) GetCountByTagAndPlatformCondition(condition string, pars []interface{}) (total int, err error) {
  181. var intNull sql.NullInt64
  182. sqlStr := fmt.Sprintf(`SELECT COUNT(1) total FROM %s AS a
  183. JOIN wechat_article AS b ON a.wechat_article_id=b.wechat_article_id
  184. JOIN wechat_platform AS c ON b.wechat_platform_id=c.wechat_platform_id
  185. JOIN wechat_platform_tag_mapping AS d ON c.wechat_platform_id=d.wechat_platform_id
  186. WHERE 1=1 AND b.is_deleted=0 %s`, m.TableName(), condition)
  187. err = global.DbMap[utils.DbNameAI].Raw(sqlStr, pars...).Scan(&intNull).Error
  188. if err == nil && intNull.Valid {
  189. total = int(intNull.Int64)
  190. }
  191. return
  192. }
  193. func (m *WechatArticleAbstract) GetPageListByTagAndPlatformCondition(condition string, pars []interface{}, startSize, pageSize int) (total int, items []*WechatArticleAbstractItem, err error) {
  194. total, err = m.GetCountByTagAndPlatformCondition(condition, pars)
  195. if err != nil {
  196. return
  197. }
  198. if total > 0 {
  199. 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)
  200. }
  201. return
  202. }
  203. // DelVectorKey
  204. // @Description: 批量删除向量库
  205. // @author: Roc
  206. // @receiver m
  207. // @datetime 2025-03-12 16:47:52
  208. // @param wechatArticleAbstractIdList []int
  209. // @return err error
  210. func (m *WechatArticleAbstract) DelVectorKey(wechatArticleAbstractIdList []int) (err error) {
  211. sqlStr := fmt.Sprintf(`UPDATE %s set vector_key = '' WHERE wechat_article_abstract_id IN (?)`, m.TableName())
  212. err = global.DbMap[utils.DbNameAI].Exec(sqlStr, wechatArticleAbstractIdList).Error
  213. return
  214. }