XMTT 6 gadi atpakaļ
vecāks
revīzija
c726fddf34

+ 5 - 5
src/main/java/com/ekexiu/project/bridge/collect/CollectService.java

@ -1,15 +1,15 @@
1 1
package com.ekexiu.project.bridge.collect;
2 2

3
import java.sql.Connection;
4
import java.sql.SQLException;
5
import java.util.List;
6
import java.util.Map;
7

8 3
import org.jfw.apt.annotation.Autowrie;
9 4
import org.jfw.apt.web.annotation.Path;
10 5
import org.jfw.apt.web.annotation.operate.Get;
11 6
import org.jfw.apt.web.annotation.param.JdbcConn;
12 7

8
import java.sql.Connection;
9
import java.sql.SQLException;
10
import java.util.List;
11
import java.util.Map;
12

13 13

14 14
@Path("/collect")
15 15
public class CollectService {

+ 1 - 1
src/main/java/com/ekexiu/project/bridge/resource/dao/BridgeDao.java

@ -72,7 +72,7 @@ public interface BridgeDao {
72 72
73 73
    @SelectOne
74 74
    @Nullable
75
    Bridge queryByCode(Connection con, String code, @Nullable @UnEquals String id) throws SQLException;
75
    Bridge queryByCode(Connection con, String code, @Nullable @UnEquals String id,@Nullable Boolean active) throws SQLException;
76 76
77 77
    @SelectOne
78 78
    @Nullable

+ 2 - 2
src/main/java/com/ekexiu/project/bridge/resource/dao/BridgeServerDao.java

@ -55,11 +55,11 @@ public interface BridgeServerDao {
55 55
56 56
    @SelectOne
57 57
    @Nullable
58
    BridgeServer queryByCode(Connection con, String code, @Nullable @UnEquals String id) throws SQLException;
58
    BridgeServer queryByCode(Connection con, String code, @Nullable @UnEquals String id,@Nullable Boolean active) throws SQLException;
59 59
60 60
    @SelectOne
61 61
    @Nullable
62
    BridgeServer checkBySeq(Connection con, String seq, @Nullable @UnEquals String id) throws SQLException;
62
    BridgeServer checkBySeq(Connection con, String seq, @Nullable @UnEquals String id,@Nullable Boolean active) throws SQLException;
63 63
64 64
    @PageSelect
65 65
    @OrderBy("ORDER BY CODE")

+ 2 - 2
src/main/java/com/ekexiu/project/bridge/resource/dao/CollectDeviceDao.java

@ -55,11 +55,11 @@ public interface CollectDeviceDao {
55 55
56 56
    @SelectOne
57 57
    @Nullable
58
    CollectDevice queryBySeqAndServer(Connection con, @SqlColumn(handlerClass = StringHandler.class,value = "SERVER_ID IN (SELECT ID FROM BRIDGE_SERVER WHERE CODE = ?)")String serverId, int seq, @Nullable @UnEquals String id) throws SQLException;
58
    CollectDevice queryBySeqAndServer(Connection con, @SqlColumn(handlerClass = StringHandler.class,value = "SERVER_ID IN (SELECT ID FROM BRIDGE_SERVER WHERE CODE = ?)")String serverId, int seq, @Nullable @UnEquals String id,@Nullable Boolean active) throws SQLException;
59 59
60 60
    @SelectOne
61 61
    @Nullable
62
    CollectDevice queryByCode(Connection con,String code,@Nullable @UnEquals String id) throws SQLException;
62
    CollectDevice queryByCode(Connection con,String code,@Nullable @UnEquals String id,@Nullable Boolean active) throws SQLException;
63 63
64 64
    @PageSelect
65 65
    @OrderBy("ORDER BY CODE")

+ 2 - 2
src/main/java/com/ekexiu/project/bridge/resource/dao/TransducerDao.java

@ -50,11 +50,11 @@ public interface TransducerDao {
50 50
51 51
    @SelectOne
52 52
    @Nullable
53
    Transducer queryBySeqAndDeviceFromServer(Connection con,@SqlColumn(handlerClass = StringHandler.class,value = "DEVICE_ID IN (SELECT ID FROM COLLECT_DEVICE WHERE SERVER_ID IN (SELECT SERVER_ID FROM COLLECT_DEVICE WHERE ID = ?))")String deviceId, int seq,@Nullable @UnEquals String id) throws SQLException;
53
    Transducer queryBySeqAndDeviceFromServer(Connection con,@SqlColumn(handlerClass = StringHandler.class,value = "DEVICE_ID IN (SELECT ID FROM COLLECT_DEVICE WHERE SERVER_ID IN (SELECT SERVER_ID FROM COLLECT_DEVICE WHERE ID = ?))")String deviceId, int seq,@Nullable @UnEquals String id,@Nullable Boolean active) throws SQLException;
54 54
55 55
    @SelectOne
56 56
    @Nullable
57
    Transducer queryByCode(Connection con,String code,@Nullable @UnEquals String id) throws SQLException;
57
    Transducer queryByCode(Connection con,String code,@Nullable @UnEquals String id,@Nullable Boolean active) throws SQLException;
58 58
59 59
    @PageSelect
60 60
    @OrderBy("ORDER BY CODE")

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

@ -182,8 +182,8 @@ public class BridgeService {
182 182
183 183
    @Get
184 184
    @Path("/bridge/checkCode")
185
    public Bridge queryByCode(@JdbcConn Connection con,String code,@Nullable String id)throws SQLException {
186
        return this.bridgeDao.queryByCode(con, code, id);
185
    public Bridge queryByCode(@JdbcConn Connection con,String code,@Nullable String id,@Nullable Boolean active)throws SQLException {
186
        return this.bridgeDao.queryByCode(con, code, id,active);
187 187
    }
188 188
    @Get
189 189
    @Path("/bridge/delete")
@ -281,14 +281,14 @@ public class BridgeService {
281 281
282 282
    @Get
283 283
    @Path("/server/checkSeq")
284
    public BridgeServer serverBySeq(@JdbcConn Connection con,String seq,@Nullable String id)throws SQLException {
285
        return this.bridgeServerDao.checkBySeq(con, seq,id);
284
    public BridgeServer serverBySeq(@JdbcConn Connection con,String seq,@Nullable String id,@Nullable Boolean active)throws SQLException {
285
        return this.bridgeServerDao.checkBySeq(con, seq,id,active);
286 286
    }
287 287
288 288
    @Get
289 289
    @Path("/server/checkCode")
290
    public BridgeServer serverByCode(@JdbcConn Connection con,String code,@Nullable String id)throws SQLException {
291
        return this.bridgeServerDao.queryByCode(con, code, id);
290
    public BridgeServer serverByCode(@JdbcConn Connection con,String code,@Nullable String id,@Nullable Boolean active)throws SQLException {
291
        return this.bridgeServerDao.queryByCode(con, code, id,active);
292 292
    }
293 293
294 294
    @Post
@ -342,14 +342,14 @@ public class BridgeService {
342 342
343 343
    @Get
344 344
    @Path("/device/checkCode")
345
    public CollectDevice deviceByCode(@JdbcConn Connection con,String code,@Nullable String id)throws SQLException {
346
        return this.collectDeviceDao.queryByCode(con, code,id);
345
    public CollectDevice deviceByCode(@JdbcConn Connection con,String code,@Nullable String id,@Nullable Boolean active)throws SQLException {
346
        return this.collectDeviceDao.queryByCode(con, code,id,active);
347 347
    }
348 348
349 349
    @Get
350 350
    @Path("/device/checkSeq")
351
    public CollectDevice serverDevice(@JdbcConn Connection con,String serverId,int seq,@Nullable String id) throws SQLException {
352
        return this.collectDeviceDao.queryBySeqAndServer(con, serverId, seq,id);
351
    public CollectDevice serverDevice(@JdbcConn Connection con,String serverId,int seq,@Nullable String id,@Nullable Boolean active) throws SQLException {
352
        return this.collectDeviceDao.queryBySeqAndServer(con, serverId, seq,id,active);
353 353
    }
354 354
355 355
    @Post
@ -401,14 +401,14 @@ public class BridgeService {
401 401
402 402
    @Get
403 403
    @Path("/transducer/checkCode")
404
    public Transducer qoByCode(@JdbcConn Connection con,String code,@Nullable String id)throws SQLException{
405
        return this.transducerDao.queryByCode(con, code,id);
404
    public Transducer qoByCode(@JdbcConn Connection con,String code,@Nullable String id,@Nullable Boolean active)throws SQLException{
405
        return this.transducerDao.queryByCode(con, code,id,active);
406 406
    }
407 407
408 408
    @Get
409 409
    @Path("/transducer/checkSeq")
410
    public Transducer deviceTransducer(@JdbcConn Connection con,String deviceId,int seq,@Nullable String id)throws SQLException {
411
        return this.transducerDao.queryBySeqAndDeviceFromServer(con, deviceId, seq,id);
410
    public Transducer deviceTransducer(@JdbcConn Connection con,String deviceId,int seq,@Nullable String id,@Nullable Boolean active)throws SQLException {
411
        return this.transducerDao.queryBySeqAndDeviceFromServer(con, deviceId, seq,id,active);
412 412
    }
413 413
414 414
    @Get