|
@@ -19,6 +19,28 @@ type PromoteTrainRecord struct {
|
|
|
UpdateTime time.Time `gorm:"update_time"`
|
|
|
}
|
|
|
|
|
|
+func (p *PromoteTrainRecord) ToView() PromoteTrainRecordView {
|
|
|
+ return PromoteTrainRecordView{
|
|
|
+ Id: p.Id,
|
|
|
+ Title: p.Title,
|
|
|
+ WechatArticleId: p.WechatArticleId,
|
|
|
+ TemplatePromote: p.TemplatePromote,
|
|
|
+ PromoteSendTime: p.PromoteSendTime.Format(utils.FormatDateTime),
|
|
|
+ AigcContent: p.AigcContent,
|
|
|
+ AigcSendTime: p.AigcSendTime.Format(utils.FormatDateTime),
|
|
|
+ }
|
|
|
+}
|
|
|
+
|
|
|
+type PromoteTrainRecordView struct {
|
|
|
+ Id int
|
|
|
+ Title string
|
|
|
+ WechatArticleId int
|
|
|
+ TemplatePromote string
|
|
|
+ PromoteSendTime string
|
|
|
+ AigcContent string
|
|
|
+ AigcSendTime string
|
|
|
+}
|
|
|
+
|
|
|
func (p *PromoteTrainRecord) TableName() string {
|
|
|
return "promote_train_record"
|
|
|
}
|
|
@@ -26,3 +48,18 @@ func (p *PromoteTrainRecord) TableName() string {
|
|
|
func (p *PromoteTrainRecord) SaveContent() error {
|
|
|
return global.DbMap[utils.DbNameAI].Create(p).Error
|
|
|
}
|
|
|
+func DeleteContent(id int) error {
|
|
|
+ return global.DbMap[utils.DbNameAI].Model(&PromoteTrainRecord{}).Where("id = ?", id).Update("is_deleted", true).Error
|
|
|
+}
|
|
|
+
|
|
|
+func GetRecordList(wechatArticleId int) (list []PromoteTrainRecordView, err error) {
|
|
|
+ var ormList []PromoteTrainRecord
|
|
|
+ err = global.DbMap[utils.DbNameAI].Model(&PromoteTrainRecord{}).Where("wechat_article_id = ? and is_deleted=?", wechatArticleId, false).Find(&ormList).Error
|
|
|
+ if err!=nil{
|
|
|
+ return
|
|
|
+ }
|
|
|
+ for _, item := range ormList {
|
|
|
+ list = append(list, item.ToView())
|
|
|
+ }
|
|
|
+ return
|
|
|
+}
|