|
|
|
|
270
|
this.saveArtImg(article.getArticleImg(), article.getArticleId());
|
270
|
this.saveArtImg(article.getArticleImg(), article.getArticleId());
|
271
|
article.setArticleImg(this.createDate() + "/" + article.getArticleId() + "." + JPG);
|
271
|
article.setArticleImg(this.createDate() + "/" + article.getArticleId() + "." + JPG);
|
272
|
}
|
272
|
}
|
|
|
273
|
Article article1 = this.articleDao.query(con, article.getArticleId());
|
|
|
274
|
article.setColNum(article1.getColNum());
|
273
|
this.articleDao.update(con, article);
|
275
|
this.articleDao.update(con, article);
|
274
|
this.keyWordService.refreshArticle(con, article.getArticleId(), article.getSubject());
|
276
|
this.keyWordService.refreshArticle(con, article.getArticleId(), article.getSubject());
|
275
|
return article.getArticleId();
|
277
|
return article.getArticleId();
|