...
|
...
|
@@ -156,14 +156,15 @@ func (l *MiniCreateArticleLogic) MiniCreateArticle(req *types.MiniArticleCreateR |
|
|
//}
|
|
|
|
|
|
newArticle := &domain.Article{
|
|
|
Id: 0,
|
|
|
CompanyId: author.CompanyId,
|
|
|
AuthorId: author.Id,
|
|
|
Author: articleAuthor,
|
|
|
Title: req.Title,
|
|
|
Images: images,
|
|
|
WhoRead: whoRead,
|
|
|
WhoReview: whoReview,
|
|
|
Id: 0,
|
|
|
CompanyId: author.CompanyId,
|
|
|
AuthorId: author.Id,
|
|
|
Author: articleAuthor,
|
|
|
Title: req.Title,
|
|
|
Images: images,
|
|
|
Attachments: NewDomainAttachments(req.Attachments),
|
|
|
WhoRead: whoRead,
|
|
|
WhoReview: whoReview,
|
|
|
Location: domain.Location{
|
|
|
Longitude: req.Location.Longitude,
|
|
|
Latitude: req.Location.Latitude,
|
...
|
...
|
|