|
@ -164,8 +164,8 @@ public class BridgeService {
|
164
|
164
|
|
165
|
165
|
@Get
|
166
|
166
|
@Path("/bridge/byUser")
|
167
|
|
public PageQueryResult<Bridge> query(@JdbcConn Connection con, String uid, @Nullable Boolean active, int pageSize, int pageNo) throws SQLException {
|
168
|
|
return this.bridgeDao.pageQuery(con, active, uid, pageSize, pageNo);
|
|
167
|
public PageQueryResult<Bridge> query(@JdbcConn Connection con, @LoginUser SessionUser user, @Nullable Boolean active, int pageSize, int pageNo) throws SQLException {
|
|
168
|
return this.bridgeDao.pageQuery(con, active, user.getId(), pageSize, pageNo);
|
169
|
169
|
}
|
170
|
170
|
|
171
|
171
|
|