作者 tangxvhui

调整 article_backup 结构

... ... @@ -31,6 +31,7 @@ type ArticleBackup struct {
Location domain.Location `gorm:"type:jsonb;serializer:json"` // 坐标
TargetUser int // 分发方式 0 分发给所有人 1 分发给指定的人
MatchUrl map[string]string `gorm:"type:jsonb;serializer:json"` // 匹配文章内容中的url文本
Show int
}
func (m *ArticleBackup) TableName() string {
... ...
... ... @@ -177,6 +177,7 @@ func (repository *ArticleBackupRepository) ModelToDomainModel(from *models.Artic
MatchUrl: from.MatchUrl,
ChangeField: from.ChangeField,
Videos: from.Videos,
Show: domain.ArticleShow(from.Show),
}
// err := copier.Copy(to, from)
return to, nil
... ... @@ -205,6 +206,7 @@ func (repository *ArticleBackupRepository) DomainModelToModel(from *domain.Artic
MatchUrl: from.MatchUrl,
Videos: from.Videos,
ChangeField: from.ChangeField,
Show: int(from.Show),
}
// err := copier.Copy(to, from)
return to, nil
... ...