XMTT 6 years ago
parent
commit
0d240a1dba

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

14
import org.jfw.apt.orm.annotation.dao.method.operator.SelectOne;
14
import org.jfw.apt.orm.annotation.dao.method.operator.SelectOne;
15
import org.jfw.apt.orm.annotation.dao.method.operator.Update;
15
import org.jfw.apt.orm.annotation.dao.method.operator.Update;
16
import org.jfw.apt.orm.annotation.dao.method.operator.UpdateWith;
16
import org.jfw.apt.orm.annotation.dao.method.operator.UpdateWith;
17
import org.jfw.apt.orm.annotation.dao.param.In;
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.annotation.dao.param.UnEquals;
20
import org.jfw.apt.orm.annotation.dao.param.UnEquals;
61
62
62
    @SelectList
63
    @SelectList
63
    List<Transducer> queryByDevice(Connection con,@Nullable Boolean active, String deviceId) throws SQLException;
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
            serverId[i] = bridgeServices.get(i).getId();
408
            serverId[i] = bridgeServices.get(i).getId();
409
        }
409
        }
410
        List<CollectDevice> collectDevices = this.collectDeviceDao.queryByServers(con, active, serverId);
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
        map.put("bridge", bridges);
416
        map.put("bridge", bridges);
412
        map.put("server", bridgeServices);
417
        map.put("server", bridgeServices);
413
        map.put("device", collectDevices);
418
        map.put("device", collectDevices);
419
        map.put("transducer", transducers);
414
        return map;
420
        return map;
415
    }
421
    }
416
422