|
@ -53,12 +53,12 @@ public interface WebMsgDao {
|
53
|
53
|
|
54
|
54
|
@UpdateWith
|
55
|
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
|
57
|
int incActorNum(Connection con, String owner, String actor, @Set String lastCnt, @Set long lastTime) throws SQLException;
|
58
|
58
|
|
59
|
59
|
@UpdateWith
|
60
|
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
|
62
|
int incOwnerNum(Connection con, String owner, String actor, @Set String lastCnt, @Set long lastTime) throws SQLException;
|
63
|
63
|
|
64
|
64
|
@UpdateWith
|