XMTT 6 years ago
parent
commit
bb48040122

+ 6 - 2
src/main/java/com/ekexiu/project/bridge/resource/service/BridgeService.java

168
        return this.bridgeDao.pageQuery(con, active, user.getId(), pageSize, pageNo);
168
        return this.bridgeDao.pageQuery(con, active, user.getId(), pageSize, pageNo);
169
    }
169
    }
170
170
171
172
173
    @Get
171
    @Get
174
    @Path("/bridge/qo")
172
    @Path("/bridge/qo")
175
    public Bridge queryBridge(@JdbcConn Connection con, String id) throws SQLException {
173
    public Bridge queryBridge(@JdbcConn Connection con, String id) throws SQLException {
212
        return this.bridgeDao.listQueryByKey(con,active, key == null ? null : "%" + key + "%");
210
        return this.bridgeDao.listQueryByKey(con,active, key == null ? null : "%" + key + "%");
213
    }
211
    }
214
212
213
    @Get
214
    @Path("/bridge/byUserId")
215
    public List<Bridge> queryByUserId(@JdbcConn Connection con,@Nullable Boolean active,String uid)throws SQLException {
216
        return this.bridgeDao.listQueryByUser(con, active, uid);
217
    }
218
215
    @Get
219
    @Get
216
    @Path("/bridge/checkName")
220
    @Path("/bridge/checkName")
217
    public Bridge queryByName(@JdbcConn Connection con, String name,@Nullable String id)throws SQLException {
221
    public Bridge queryByName(@JdbcConn Connection con, String name,@Nullable String id)throws SQLException {