XMTT 6 ans auparavant
Parent
commit
8eb8cd4608

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

@ -14,6 +14,7 @@ import org.jfw.apt.orm.annotation.dao.method.operator.SelectOne;
14 14
import org.jfw.apt.orm.annotation.dao.method.operator.Update;
15 15
import org.jfw.apt.orm.annotation.dao.method.operator.UpdateWith;
16 16
import org.jfw.apt.orm.annotation.dao.param.In;
17
import org.jfw.apt.orm.annotation.dao.param.Like;
17 18
import org.jfw.apt.orm.annotation.dao.param.Set;
18 19
import org.jfw.apt.orm.annotation.dao.param.SqlColumn;
19 20
import org.jfw.apt.orm.core.defaultImpl.StringHandler;
@ -49,6 +50,10 @@ public interface BridgeServerDao {
49 50
    @Nullable
50 51
    BridgeServer queryBySeq(Connection con,String seq) throws SQLException;
51 52
53
    @SelectOne
54
    @Nullable
55
    BridgeServer queryByCode(Connection con,String code) throws SQLException;
56
52 57
    @PageSelect
53 58
    @OrderBy("ORDER BY CODE")
54 59
    PageQueryResult<BridgeServer> pageQuery(Connection con, @Nullable Boolean active, @Nullable @SqlColumn(handlerClass = StringHandler.class, value = {"ID IN (SELECT ID FROM BRIDGE WHERE CODE = ?)"}) String bridgeCode, @Nullable String code, int pageSize, int pageNo) throws SQLException;
@ -58,6 +63,9 @@ public interface BridgeServerDao {
58 63
59 64
    @SelectList
60 65
    List<BridgeServer> queryByBridges(Connection con, @Nullable Boolean active, @In String[] bridgeId) throws SQLException;
66
67
    @SelectList
68
    List<BridgeServer> queryByCode(Connection con, @Nullable Boolean active, @Nullable @Like String code) throws SQLException;
61 69
}
62 70
63 71

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

@ -14,6 +14,7 @@ import org.jfw.apt.orm.annotation.dao.method.operator.SelectOne;
14 14
import org.jfw.apt.orm.annotation.dao.method.operator.Update;
15 15
import org.jfw.apt.orm.annotation.dao.method.operator.UpdateWith;
16 16
import org.jfw.apt.orm.annotation.dao.param.In;
17
import org.jfw.apt.orm.annotation.dao.param.Like;
17 18
import org.jfw.apt.orm.annotation.dao.param.Set;
18 19
import org.jfw.apt.orm.annotation.dao.param.SqlColumn;
19 20
import org.jfw.apt.orm.core.defaultImpl.StringHandler;
@ -49,6 +50,14 @@ public interface CollectDeviceDao {
49 50
    @Nullable
50 51
    CollectDevice query(Connection con, String serverId,int seq) throws SQLException;
51 52
53
    @SelectOne
54
    @Nullable
55
    CollectDevice queryBySeqAndServer(Connection con,@SqlColumn(handlerClass = StringHandler.class,value = "SERVER_ID IN (SELECT ID FROM BRIDGE_SERVER WHERE CODE = ?)")String serverCode, int seq) throws SQLException;
56
57
    @SelectOne
58
    @Nullable
59
    CollectDevice queryByCode(Connection con,String code) throws SQLException;
60
52 61
    @PageSelect
53 62
    @OrderBy("ORDER BY CODE")
54 63
    PageQueryResult<CollectDevice> pageQuery(Connection con, @Nullable Boolean active, @Nullable @SqlColumn(handlerClass = StringHandler.class, value = {"ID IN (SELECT ID FROM BRIDGE_SERVER WHERE CODE = ?)"}) String serverCode, @Nullable String code, int pageSize, int pageNo) throws SQLException;
@ -58,4 +67,7 @@ public interface CollectDeviceDao {
58 67
59 68
    @SelectList
60 69
    List<CollectDevice> queryByServers(Connection con, @Nullable Boolean active, @In String[] serverId) throws SQLException;
70
71
    @SelectList
72
    List<CollectDevice> queryByCode(Connection con, @Nullable Boolean active, @Nullable @Like String code) throws SQLException;
61 73
}

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

@ -44,6 +44,14 @@ public interface TransducerDao {
44 44
    @Nullable
45 45
    Transducer query(Connection con, String id) throws SQLException;
46 46
47
    @SelectOne
48
    @Nullable
49
    Transducer queryBySeqAndDevice(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 CODE = ?))")String deviceCode, int seq) throws SQLException;
50
51
    @SelectOne
52
    @Nullable
53
    Transducer queryByCode(Connection con,String code) throws SQLException;
54
47 55
    @PageSelect
48 56
    @OrderBy("ORDER BY CODE")
49 57
    PageQueryResult<Transducer> pageQuery(Connection con, @Nullable Boolean active, @Nullable @SqlColumn(handlerClass = StringHandler.class, value = {"ID IN (SELECT ID FROM COLLECT_DEVICE WHERE CODE = ?)"}) String collectDeviceCode, @Nullable String code, int pageSize, int pageNo) throws SQLException;

+ 11 - 0
src/main/java/com/ekexiu/project/bridge/resource/po/Transducer.java

@ -4,8 +4,11 @@ import com.ekexiu.project.bridge.base.po.BaseTable;
4 4
import org.jfw.apt.orm.annotation.entry.Column;
5 5
import org.jfw.apt.orm.annotation.entry.PrimaryKey;
6 6
import org.jfw.apt.orm.annotation.entry.Table;
7
import org.jfw.apt.orm.annotation.entry.Unique;
8
import org.jfw.apt.orm.annotation.entry.Uniques;
7 9
import org.jfw.apt.orm.core.enums.DE;
8 10

11
@Uniques({@Unique(clolumns ={"serverId","seq"},name="UC_TRANSDUCER_SERVER"),@Unique(clolumns = "code",name="UC_TRANSDUCER_CODE")})
9 12
@PrimaryKey("id")
10 13
@Table(descp="传感器")
11 14
public class Transducer implements BaseTable {
@ -16,6 +19,7 @@ public class Transducer implements BaseTable {
16 19
	private String cableType;
17 20
	private String locType;
18 21
	private String remark;
22
	private String serverId;
19 23
	private boolean active;
20 24
	
21 25
	private String createTime;
@ -73,6 +77,13 @@ public class Transducer implements BaseTable {
73 77
	public void setRemark(String remark) {
74 78
		this.remark = remark;
75 79
	}
80
	@Column(descp="服务器ID",value = DE.text_de)
81
	public String getServerId() {
82
		return serverId;
83
	}
84
	public void setServerId(String serverId) {
85
		this.serverId = serverId;
86
	}
76 87
	@Column(descp="是否可用",value=DE.boolean_de)	
77 88
	public boolean isActive() {
78 89
		return active;

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

@ -251,6 +251,19 @@ public class BridgeService {
251 251
        this.bridgeServerDao.logicDelete(con, sessionUser.getId(), id);
252 252
    }
253 253
254
    @Get
255
    @Path("/server/listByCode")
256
    public List<BridgeServer> serverListByCode(@JdbcConn Connection con,@Nullable Boolean active,@Nullable String code)throws SQLException {
257
        return this.bridgeServerDao.queryByCode(con, active, code == null ? null : "%" + code + "%");
258
    }
259
260
261
    @Get
262
    @Path("/server/qoBySeq")
263
    public BridgeServer serverBySeq(@JdbcConn Connection con,String seq)throws SQLException {
264
        return this.bridgeServerDao.queryBySeq(con, seq);
265
    }
266
254 267
    @Post
255 268
    @Path("/device")
256 269
    public String insert(@JdbcConn(true) Connection con, @LoginUser SessionUser sessionUser, CollectDevice collectDevice) throws SQLException {
@ -294,6 +307,24 @@ public class BridgeService {
294 307
        return this.collectDeviceDao.queryByServer(con,active, id);
295 308
    }
296 309
310
    @Get
311
    @Path("/device/listByCode")
312
    public List<CollectDevice> deviceListByCode(@JdbcConn Connection con,@Nullable Boolean active,@Nullable String code)throws SQLException {
313
        return this.collectDeviceDao.queryByCode(con, active, code == null ? null : "%" + code + "%");
314
    }
315
316
    @Get
317
    @Path("/device/qoByCode")
318
    public CollectDevice deviceByCode(@JdbcConn Connection con,String code)throws SQLException {
319
        return this.collectDeviceDao.queryByCode(con, code);
320
    }
321
322
    @Get
323
    @Path("/device/serverDevice")
324
    public CollectDevice serverDevice(@JdbcConn Connection con,String serverCode,int seq) throws SQLException {
325
        return this.collectDeviceDao.queryBySeqAndServer(con, serverCode, seq);
326
    }
327
297 328
    @Post
298 329
    @Path("/transducer")
299 330
    public String insert(@JdbcConn(true) Connection con, @LoginUser SessionUser sessionUser, Transducer transducer) throws SQLException {
@ -302,6 +333,8 @@ public class BridgeService {
302 333
        transducer.setActive(true);
303 334
        transducer.setCreator(sessionUser.getId());
304 335
        transducer.setModifier(sessionUser.getId());
336
        CollectDevice device = this.collectDeviceDao.query(con, transducer.getDeviceId());
337
        transducer.setServerId(device.getServerId());
305 338
        this.transducerDao.insert(con, transducer);
306 339
        return id;
307 340
    }
@ -337,6 +370,18 @@ public class BridgeService {
337 370
        return this.transducerDao.queryByDevice(con,active,id);
338 371
    }
339 372
373
    @Get
374
    @Path("/transducer/qoByCode")
375
    public Transducer qoByCode(@JdbcConn Connection con,String code)throws SQLException{
376
        return this.transducerDao.queryByCode(con, code);
377
    }
378
379
    @Get
380
    @Path("/transducer/deviceTransducer")
381
    public Transducer deviceTransducer(@JdbcConn Connection con,String deviceCode,int seq)throws SQLException {
382
        return this.transducerDao.queryBySeqAndDevice(con, deviceCode, seq);
383
    }
384
340 385
    @Get
341 386
    @Path("/all/byUser")
342 387
    public Map<String,Object> queryAll(@JdbcConn Connection con,@Nullable Boolean active, String id)throws SQLException {