XMTT 6 年之前
父節點
當前提交
abbb9b320e

+ 6 - 0
src/main/java/com/ekexiu/project/platform/article/ArticleDao.java

@ -53,6 +53,12 @@ public interface ArticleDao {
53 53
    @Insert
54 54
    int insert(Connection con, Article article) throws SQLException;
55 55

56
    @UpdateWith
57
    @From(Article.class)
58
    @Where("ACTIVED ='1'")
59
    @SetSentence("MODIFY_TIME=TO_CHAR(NOW(),'YYYYMMDDHH24MISS')")
60
    int updateTime(Connection con, String id) throws SQLException;
61

56 62
    @Update
57 63
    @Where("ACTIVED ='1'")
58 64
    @Dynamic

+ 1 - 0
src/main/java/com/ekexiu/project/platform/article/ArticleService.java

@ -47,6 +47,7 @@ public class ArticleService {
47 47
        article.setModifier(sessionManager.getId());
48 48
        relate(con, article, professors, orgs, comps, id);
49 49
        articleDao.insert(con, article);
50
        articleDao.updateTime(con, id);
50 51
        return id;
51 52
    }
52 53