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

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

53
    @Insert
53
    @Insert
54
    int insert(Connection con, Article article) throws SQLException;
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
    @Update
62
    @Update
57
    @Where("ACTIVED ='1'")
63
    @Where("ACTIVED ='1'")
58
    @Dynamic
64
    @Dynamic

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

47
        article.setModifier(sessionManager.getId());
47
        article.setModifier(sessionManager.getId());
48
        relate(con, article, professors, orgs, comps, id);
48
        relate(con, article, professors, orgs, comps, id);
49
        articleDao.insert(con, article);
49
        articleDao.insert(con, article);
50
        articleDao.updateTime(con, id);
50
        return id;
51
        return id;
51
    }
52
    }
52

53