XMTT 6 ans auparavant
Parent
commit
0d240a1dba

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

@ -14,6 +14,7 @@ import org.jfw.apt.orm.annotation.dao.method.operator.SelectList;
14 14
import org.jfw.apt.orm.annotation.dao.method.operator.SelectOne;
15 15
import org.jfw.apt.orm.annotation.dao.method.operator.Update;
16 16
import org.jfw.apt.orm.annotation.dao.method.operator.UpdateWith;
17
import org.jfw.apt.orm.annotation.dao.param.In;
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.annotation.dao.param.UnEquals;
@ -61,4 +62,7 @@ public interface TransducerDao {
61 62
62 63
    @SelectList
63 64
    List<Transducer> queryByDevice(Connection con,@Nullable Boolean active, String deviceId) throws SQLException;
65
66
    @SelectList
67
    List<Transducer> queryByUser(Connection con, @Nullable Boolean active,@In String[] deviceId) throws SQLException;
64 68
}

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

@ -408,9 +408,15 @@ public class BridgeService {
408 408
            serverId[i] = bridgeServices.get(i).getId();
409 409
        }
410 410
        List<CollectDevice> collectDevices = this.collectDeviceDao.queryByServers(con, active, serverId);
411
        String[] deviceId = new String[collectDevices.size()];
412
        for (int i = 0; i < collectDevices.size(); ++i) {
413
            deviceId[i] = collectDevices.get(i).getId();
414
        }
415
        List<Transducer> transducers = this.transducerDao.queryByUser(con, active, deviceId);
411 416
        map.put("bridge", bridges);
412 417
        map.put("server", bridgeServices);
413 418
        map.put("device", collectDevices);
419
        map.put("transducer", transducers);
414 420
        return map;
415 421
    }
416 422