XMTT 6 vuotta sitten
vanhempi
commit
c726fddf34

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

1
package com.ekexiu.project.bridge.collect;
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
import org.jfw.apt.annotation.Autowrie;
3
import org.jfw.apt.annotation.Autowrie;
9
import org.jfw.apt.web.annotation.Path;
4
import org.jfw.apt.web.annotation.Path;
10
import org.jfw.apt.web.annotation.operate.Get;
5
import org.jfw.apt.web.annotation.operate.Get;
11
import org.jfw.apt.web.annotation.param.JdbcConn;
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
@Path("/collect")
14
@Path("/collect")
15
public class CollectService {
15
public class CollectService {

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

72
72
73
    @SelectOne
73
    @SelectOne
74
    @Nullable
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
    @SelectOne
77
    @SelectOne
78
    @Nullable
78
    @Nullable

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

55
55
56
    @SelectOne
56
    @SelectOne
57
    @Nullable
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
    @SelectOne
60
    @SelectOne
61
    @Nullable
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
    @PageSelect
64
    @PageSelect
65
    @OrderBy("ORDER BY CODE")
65
    @OrderBy("ORDER BY CODE")

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

55
55
56
    @SelectOne
56
    @SelectOne
57
    @Nullable
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
    @SelectOne
60
    @SelectOne
61
    @Nullable
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
    @PageSelect
64
    @PageSelect
65
    @OrderBy("ORDER BY CODE")
65
    @OrderBy("ORDER BY CODE")

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

50
50
51
    @SelectOne
51
    @SelectOne
52
    @Nullable
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
    @SelectOne
55
    @SelectOne
56
    @Nullable
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
    @PageSelect
59
    @PageSelect
60
    @OrderBy("ORDER BY CODE")
60
    @OrderBy("ORDER BY CODE")

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

182
182
183
    @Get
183
    @Get
184
    @Path("/bridge/checkCode")
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
    @Get
188
    @Get
189
    @Path("/bridge/delete")
189
    @Path("/bridge/delete")
281
281
282
    @Get
282
    @Get
283
    @Path("/server/checkSeq")
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
    @Get
288
    @Get
289
    @Path("/server/checkCode")
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
    @Post
294
    @Post
342
342
343
    @Get
343
    @Get
344
    @Path("/device/checkCode")
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
    @Get
349
    @Get
350
    @Path("/device/checkSeq")
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
    @Post
355
    @Post
401
401
402
    @Get
402
    @Get
403
    @Path("/transducer/checkCode")
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
    @Get
408
    @Get
409
    @Path("/transducer/checkSeq")
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
    @Get
414
    @Get