XMTT 6 ans auparavant
Parent
commit
7ecc4d2d99

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

@ -76,9 +76,9 @@ public interface BridgeDao {
76 76
77 77
    @SelectOne
78 78
    @Nullable
79
    Bridge queryByName(Connection con, String name, @Nullable @UnEquals String id) throws SQLException;
79
    Bridge queryByName(Connection con, String name, @Nullable @UnEquals String id,@Nullable Boolean active) throws SQLException;
80 80
81 81
    @SelectOne
82 82
    @Nullable
83
    Bridge queryByShortName(Connection con, String shortName, @Nullable @UnEquals String id) throws SQLException;
83
    Bridge queryByShortName(Connection con, String shortName, @Nullable @UnEquals String id,@Nullable Boolean active) throws SQLException;
84 84
}

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

@ -41,6 +41,12 @@ public interface BridgeServerDao {
41 41
    @IncludeFixSet("modifyTime")
42 42
    int logicDelete(Connection con, @Set String modifier, String id) throws SQLException;
43 43
44
    @UpdateWith
45
    @From(BridgeServer.class)
46
    @SetSentence("active = '0'")
47
    @IncludeFixSet("modifyTime")
48
    int logicDeleteByBridge(Connection con, @Set String modifier,String bridgeId) throws SQLException;
49
44 50
    @Update
45 51
    @Exclude("active")
46 52
    int update(Connection con, BridgeServer bridgeServer) throws SQLException;

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

@ -41,6 +41,12 @@ public interface CollectDeviceDao {
41 41
    @IncludeFixSet("modifyTime")
42 42
    int logicDelete(Connection con, @Set String modifier, String id) throws SQLException;
43 43
44
    @UpdateWith
45
    @From(CollectDevice.class)
46
    @SetSentence("active = '0'")
47
    @IncludeFixSet("modifyTime")
48
    int logicDeleteByServers(Connection con, @Set String modifier,@In String[] serverId) throws SQLException;
49
44 50
    @Update
45 51
    @Exclude("active")
46 52
    int update(Connection con, CollectDevice collectDevice) throws SQLException;

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

@ -40,6 +40,12 @@ public interface TransducerDao {
40 40
    @IncludeFixSet("modifyTime")
41 41
    int logicDelete(Connection con, @Set String modifier, String id) throws SQLException;
42 42
43
    @UpdateWith
44
    @From(Transducer.class)
45
    @SetSentence("active = '0'")
46
    @IncludeFixSet("modifyTime")
47
    int logicDeleteByDevices(Connection con, @Set String modifier,@In String[] deviceId) throws SQLException;
48
43 49
    @Update
44 50
    @Exclude("active")
45 51
    int update(Connection con, Transducer transducer) throws SQLException;

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

@ -189,6 +189,25 @@ public class BridgeService {
189 189
    @Path("/bridge/delete")
190 190
    public void delete(@JdbcConn(true) Connection con, @LoginUser SessionUser sessionUser, String id) throws SQLException {
191 191
        this.bridgeDao.logicDelete(con, sessionUser.getId(), id);
192
        this.bridgeServerDao.logicDeleteByBridge(con, sessionUser.getId(), id);
193
        String[] bridgeId = new String[1];
194
        bridgeId[0] = id;
195
        List<BridgeServer> bridgeServers = this.bridgeServerDao.queryByBridges(con, null, bridgeId);
196
        if (bridgeServers.size() > 0) {
197
            String[] serverId = new String[bridgeServers.size()];
198
            for (int i = 0; i < bridgeServers.size(); ++i) {
199
                serverId[i] = bridgeServers.get(i).getId();
200
            }
201
            this.collectDeviceDao.logicDeleteByServers(con, sessionUser.getId(), serverId);
202
            List<CollectDevice> collectDevices = this.collectDeviceDao.queryByServers(con, null, serverId);
203
            if (collectDevices.size() > 0) {
204
                String[] deviceId = new String[collectDevices.size()];
205
                for (int i = 0; i < collectDevices.size(); ++i) {
206
                    deviceId[i] = collectDevices.get(i).getId();
207
                }
208
                this.transducerDao.logicDeleteByDevices(con, null, deviceId);
209
            }
210
        }
192 211
    }
193 212
194 213
    @Post
@ -218,14 +237,14 @@ public class BridgeService {
218 237
219 238
    @Get
220 239
    @Path("/bridge/checkName")
221
    public Bridge queryByName(@JdbcConn Connection con, String name,@Nullable String id)throws SQLException {
222
        return this.bridgeDao.queryByName(con, name, id);
240
    public Bridge queryByName(@JdbcConn Connection con, String name,@Nullable String id,@Nullable Boolean active)throws SQLException {
241
        return this.bridgeDao.queryByName(con, name, id,active);
223 242
    }
224 243
225 244
    @Get
226 245
    @Path("/bridge/checkShortName")
227
    public Bridge queryByShortName(@JdbcConn Connection con,String shortName,@Nullable String id)throws SQLException {
228
        return this.bridgeDao.queryByShortName(con, shortName, id);
246
    public Bridge queryByShortName(@JdbcConn Connection con,String shortName,@Nullable String id,@Nullable Boolean active)throws SQLException {
247
        return this.bridgeDao.queryByShortName(con, shortName, id,active);
229 248
    }
230 249
231 250
    @Post
@ -270,6 +289,17 @@ public class BridgeService {
270 289
    public void deleteServer(@JdbcConn(true) Connection con, @LoginUser SessionUser sessionUser
271 290
            , String id) throws SQLException {
272 291
        this.bridgeServerDao.logicDelete(con, sessionUser.getId(), id);
292
        String[] serverId = new String[1];
293
        serverId[0] = id;
294
        this.collectDeviceDao.logicDeleteByServers(con, sessionUser.getId(), serverId);
295
        List<CollectDevice> collectDevices = this.collectDeviceDao.queryByServers(con, null, serverId);
296
        if (collectDevices.size() > 0) {
297
            String[] deviceId = new String[collectDevices.size()];
298
            for (int i = 0; i < collectDevices.size(); ++i) {
299
                deviceId[i] = collectDevices.get(i).getId();
300
            }
301
            this.transducerDao.logicDeleteByDevices(con, null, deviceId);
302
        }
273 303
    }
274 304
275 305
    @Get
@ -326,6 +356,9 @@ public class BridgeService {
326 356
    @Path("/device/delete")
327 357
    public void deleteDevice(@JdbcConn(true) Connection con, @LoginUser SessionUser sessionUser, String id) throws SQLException {
328 358
        this.collectDeviceDao.logicDelete(con, sessionUser.getId(), id);
359
        String[] deviceId = new String[1];
360
        deviceId[0] = id;
361
        this.transducerDao.logicDeleteByDevices(con, null, deviceId);
329 362
    }
330 363
331 364
    @Get

+ 6 - 0
src/main/java/com/ekexiu/project/bridge/system/service/SysService.java

@ -249,6 +249,12 @@ public class SysService {
249 249
		}
250 250
	}
251 251
252
	@Get
253
	@Path("/sys/serviceTime")
254
	public long serviceTime() {
255
		return System.currentTimeMillis();
256
	}
257
252 258
	private static SessionUser makeSessionUser(User user) {
253 259
		SessionUser sessionUser = new SessionUser();
254 260
		sessionUser.setAccount(user.getAccount());