promote_train_record.go 2.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768
  1. package rag
  2. import (
  3. "eta/eta_api/global"
  4. "eta/eta_api/utils"
  5. "time"
  6. )
  7. type PromoteTrainRecord struct {
  8. Id int `gorm:"id;primaryKey"`
  9. Title string `gorm:"title"`
  10. Llm string `gorm:"llm"`
  11. WechatArticleId int `gorm:"wechat_article_id"`
  12. TemplatePromote string `gorm:"template_promote"`
  13. PromoteSendTime time.Time `gorm:"promote_send_time"`
  14. AigcContent string `gorm:"aigc_content"`
  15. AigcSendTime time.Time `gorm:"aigc_send_time"`
  16. IsDeleted bool `gorm:"is_deleted"`
  17. CreatedTime time.Time `gorm:"created_time"`
  18. UpdateTime time.Time `gorm:"update_time"`
  19. }
  20. func (p *PromoteTrainRecord) ToView() *PromoteTrainRecordView {
  21. return &PromoteTrainRecordView{
  22. Id: p.Id,
  23. Title: p.Title,
  24. Llm: p.Llm,
  25. WechatArticleId: p.WechatArticleId,
  26. TemplatePromote: p.TemplatePromote,
  27. PromoteSendTime: p.PromoteSendTime.Format(utils.FormatDateTime),
  28. AigcContent: p.AigcContent,
  29. AigcSendTime: p.AigcSendTime.Format(utils.FormatDateTime),
  30. }
  31. }
  32. type PromoteTrainRecordView struct {
  33. Id int
  34. Title string
  35. Llm string
  36. WechatArticleId int
  37. TemplatePromote string
  38. PromoteSendTime string
  39. AigcContent string
  40. AigcSendTime string
  41. }
  42. func (p *PromoteTrainRecord) TableName() string {
  43. return "promote_train_record"
  44. }
  45. func (p *PromoteTrainRecord) SaveContent() error {
  46. return global.DbMap[utils.DbNameAI].Create(p).Error
  47. }
  48. func DeleteContent(id int) error {
  49. return global.DbMap[utils.DbNameAI].Model(&PromoteTrainRecord{}).Where("id = ?", id).Update("is_deleted", true).Error
  50. }
  51. func GetRecordList(wechatArticleId int) (list []*PromoteTrainRecordView, err error) {
  52. var ormList []PromoteTrainRecord
  53. err = global.DbMap[utils.DbNameAI].Model(&PromoteTrainRecord{}).Where("wechat_article_id = ? and is_deleted=?", wechatArticleId, false).Order(`created_time DESC`).Find(&ormList).Error
  54. if err != nil {
  55. return
  56. }
  57. for _, item := range ormList {
  58. list = append(list, item.ToView())
  59. }
  60. return
  61. }