jiapeng 7 years ago
parent
commit
6a77975de5
1 changed files with 2 additions and 2 deletions
  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