Selaa lähdekoodia

Merge remote-tracking branch 'origin/dev' into test

jiapeng 7 vuotta sitten
vanhempi
commit
71a84674db
1 muutettua tiedostoa jossa 2 lisäystä ja 2 poistoa
  1. 2 2
      src/main/java/com/ekexiu/portal/msg/WebMsgDao.java

+ 2 - 2
src/main/java/com/ekexiu/portal/msg/WebMsgDao.java

53

53

54
	@UpdateWith
54
	@UpdateWith
55
	@From(WebMsgIdx.class)
55
	@From(WebMsgIdx.class)
56
	@SetSentence("NUM_OF_ACTOR = NUM_OF_ACTOR + 1,SHOW_OF_ACTOR='1'")
56
	@SetSentence("NUM_OF_ACTOR = NUM_OF_ACTOR + 1,SHOW_OF_ACTOR='1',SHOW_OF_OWNER='1'")
57
	int incActorNum(Connection con, String owner, String actor, @Set String lastCnt, @Set long lastTime) throws SQLException;
57
	int incActorNum(Connection con, String owner, String actor, @Set String lastCnt, @Set long lastTime) throws SQLException;
58

58

59
	@UpdateWith
59
	@UpdateWith
60
	@From(WebMsgIdx.class)
60
	@From(WebMsgIdx.class)
61
	@SetSentence("NUM_OF_OWNER = NUM_OF_OWNER + 1,SHOW_OF_OWNER='1'")
61
	@SetSentence("NUM_OF_OWNER = NUM_OF_OWNER + 1,SHOW_OF_OWNER='1',SHOW_OF_ACTOR='1'")
62
	int incOwnerNum(Connection con, String owner, String actor, @Set String lastCnt, @Set long lastTime) throws SQLException;
62
	int incOwnerNum(Connection con, String owner, String actor, @Set String lastCnt, @Set long lastTime) throws SQLException;
63

63

64
	@UpdateWith
64
	@UpdateWith