XMTT 6 ans auparavant
Parent
commit
bb48040122

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

@ -168,8 +168,6 @@ public class BridgeService {
168 168
        return this.bridgeDao.pageQuery(con, active, user.getId(), pageSize, pageNo);
169 169
    }
170 170
171
172
173 171
    @Get
174 172
    @Path("/bridge/qo")
175 173
    public Bridge queryBridge(@JdbcConn Connection con, String id) throws SQLException {
@ -212,6 +210,12 @@ public class BridgeService {
212 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 219
    @Get
216 220
    @Path("/bridge/checkName")
217 221
    public Bridge queryByName(@JdbcConn Connection con, String name,@Nullable String id)throws SQLException {