XMTT 6 vuotta sitten
vanhempi
commit
8eb8cd4608

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

14
import org.jfw.apt.orm.annotation.dao.method.operator.Update;
14
import org.jfw.apt.orm.annotation.dao.method.operator.Update;
15
import org.jfw.apt.orm.annotation.dao.method.operator.UpdateWith;
15
import org.jfw.apt.orm.annotation.dao.method.operator.UpdateWith;
16
import org.jfw.apt.orm.annotation.dao.param.In;
16
import org.jfw.apt.orm.annotation.dao.param.In;
17
import org.jfw.apt.orm.annotation.dao.param.Like;
17
import org.jfw.apt.orm.annotation.dao.param.Set;
18
import org.jfw.apt.orm.annotation.dao.param.Set;
18
import org.jfw.apt.orm.annotation.dao.param.SqlColumn;
19
import org.jfw.apt.orm.annotation.dao.param.SqlColumn;
19
import org.jfw.apt.orm.core.defaultImpl.StringHandler;
20
import org.jfw.apt.orm.core.defaultImpl.StringHandler;
49
    @Nullable
50
    @Nullable
50
    BridgeServer queryBySeq(Connection con,String seq) throws SQLException;
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
    @PageSelect
57
    @PageSelect
53
    @OrderBy("ORDER BY CODE")
58
    @OrderBy("ORDER BY CODE")
54
    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;
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
63
59
    @SelectList
64
    @SelectList
60
    List<BridgeServer> queryByBridges(Connection con, @Nullable Boolean active, @In String[] bridgeId) throws SQLException;
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
import org.jfw.apt.orm.annotation.dao.method.operator.Update;
14
import org.jfw.apt.orm.annotation.dao.method.operator.Update;
15
import org.jfw.apt.orm.annotation.dao.method.operator.UpdateWith;
15
import org.jfw.apt.orm.annotation.dao.method.operator.UpdateWith;
16
import org.jfw.apt.orm.annotation.dao.param.In;
16
import org.jfw.apt.orm.annotation.dao.param.In;
17
import org.jfw.apt.orm.annotation.dao.param.Like;
17
import org.jfw.apt.orm.annotation.dao.param.Set;
18
import org.jfw.apt.orm.annotation.dao.param.Set;
18
import org.jfw.apt.orm.annotation.dao.param.SqlColumn;
19
import org.jfw.apt.orm.annotation.dao.param.SqlColumn;
19
import org.jfw.apt.orm.core.defaultImpl.StringHandler;
20
import org.jfw.apt.orm.core.defaultImpl.StringHandler;
49
    @Nullable
50
    @Nullable
50
    CollectDevice query(Connection con, String serverId,int seq) throws SQLException;
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
    @PageSelect
61
    @PageSelect
53
    @OrderBy("ORDER BY CODE")
62
    @OrderBy("ORDER BY CODE")
54
    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;
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
67
59
    @SelectList
68
    @SelectList
60
    List<CollectDevice> queryByServers(Connection con, @Nullable Boolean active, @In String[] serverId) throws SQLException;
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
    @Nullable
44
    @Nullable
45
    Transducer query(Connection con, String id) throws SQLException;
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
    @PageSelect
55
    @PageSelect
48
    @OrderBy("ORDER BY CODE")
56
    @OrderBy("ORDER BY CODE")
49
    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;
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
import org.jfw.apt.orm.annotation.entry.Column;
4
import org.jfw.apt.orm.annotation.entry.Column;
5
import org.jfw.apt.orm.annotation.entry.PrimaryKey;
5
import org.jfw.apt.orm.annotation.entry.PrimaryKey;
6
import org.jfw.apt.orm.annotation.entry.Table;
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
import org.jfw.apt.orm.core.enums.DE;
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
@PrimaryKey("id")
12
@PrimaryKey("id")
10
@Table(descp="传感器")
13
@Table(descp="传感器")
11
public class Transducer implements BaseTable {
14
public class Transducer implements BaseTable {
16
	private String cableType;
19
	private String cableType;
17
	private String locType;
20
	private String locType;
18
	private String remark;
21
	private String remark;
22
	private String serverId;
19
	private boolean active;
23
	private boolean active;
20
	
24
	
21
	private String createTime;
25
	private String createTime;
73
	public void setRemark(String remark) {
77
	public void setRemark(String remark) {
74
		this.remark = remark;
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
	@Column(descp="是否可用",value=DE.boolean_de)	
87
	@Column(descp="是否可用",value=DE.boolean_de)	
77
	public boolean isActive() {
88
	public boolean isActive() {
78
		return active;
89
		return active;

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

251
        this.bridgeServerDao.logicDelete(con, sessionUser.getId(), id);
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
    @Post
267
    @Post
255
    @Path("/device")
268
    @Path("/device")
256
    public String insert(@JdbcConn(true) Connection con, @LoginUser SessionUser sessionUser, CollectDevice collectDevice) throws SQLException {
269
    public String insert(@JdbcConn(true) Connection con, @LoginUser SessionUser sessionUser, CollectDevice collectDevice) throws SQLException {
294
        return this.collectDeviceDao.queryByServer(con,active, id);
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
    @Post
328
    @Post
298
    @Path("/transducer")
329
    @Path("/transducer")
299
    public String insert(@JdbcConn(true) Connection con, @LoginUser SessionUser sessionUser, Transducer transducer) throws SQLException {
330
    public String insert(@JdbcConn(true) Connection con, @LoginUser SessionUser sessionUser, Transducer transducer) throws SQLException {
302
        transducer.setActive(true);
333
        transducer.setActive(true);
303
        transducer.setCreator(sessionUser.getId());
334
        transducer.setCreator(sessionUser.getId());
304
        transducer.setModifier(sessionUser.getId());
335
        transducer.setModifier(sessionUser.getId());
336
        CollectDevice device = this.collectDeviceDao.query(con, transducer.getDeviceId());
337
        transducer.setServerId(device.getServerId());
305
        this.transducerDao.insert(con, transducer);
338
        this.transducerDao.insert(con, transducer);
306
        return id;
339
        return id;
307
    }
340
    }
337
        return this.transducerDao.queryByDevice(con,active,id);
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
    @Get
385
    @Get
341
    @Path("/all/byUser")
386
    @Path("/all/byUser")
342
    public Map<String,Object> queryAll(@JdbcConn Connection con,@Nullable Boolean active, String id)throws SQLException {
387
    public Map<String,Object> queryAll(@JdbcConn Connection con,@Nullable Boolean active, String id)throws SQLException {