promote_train_record.go 1.9 KB

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