XMTT 6 years ago
parent
commit
7ecc4d2d99

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

76
76
77
    @SelectOne
77
    @SelectOne
78
    @Nullable
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
    @SelectOne
81
    @SelectOne
82
    @Nullable
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
    @IncludeFixSet("modifyTime")
41
    @IncludeFixSet("modifyTime")
42
    int logicDelete(Connection con, @Set String modifier, String id) throws SQLException;
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
    @Update
50
    @Update
45
    @Exclude("active")
51
    @Exclude("active")
46
    int update(Connection con, BridgeServer bridgeServer) throws SQLException;
52
    int update(Connection con, BridgeServer bridgeServer) throws SQLException;

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

41
    @IncludeFixSet("modifyTime")
41
    @IncludeFixSet("modifyTime")
42
    int logicDelete(Connection con, @Set String modifier, String id) throws SQLException;
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
    @Update
50
    @Update
45
    @Exclude("active")
51
    @Exclude("active")
46
    int update(Connection con, CollectDevice collectDevice) throws SQLException;
52
    int update(Connection con, CollectDevice collectDevice) throws SQLException;

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

40
    @IncludeFixSet("modifyTime")
40
    @IncludeFixSet("modifyTime")
41
    int logicDelete(Connection con, @Set String modifier, String id) throws SQLException;
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
    @Update
49
    @Update
44
    @Exclude("active")
50
    @Exclude("active")
45
    int update(Connection con, Transducer transducer) throws SQLException;
51
    int update(Connection con, Transducer transducer) throws SQLException;

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

189
    @Path("/bridge/delete")
189
    @Path("/bridge/delete")
190
    public void delete(@JdbcConn(true) Connection con, @LoginUser SessionUser sessionUser, String id) throws SQLException {
190
    public void delete(@JdbcConn(true) Connection con, @LoginUser SessionUser sessionUser, String id) throws SQLException {
191
        this.bridgeDao.logicDelete(con, sessionUser.getId(), id);
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
    @Post
213
    @Post
218
237
219
    @Get
238
    @Get
220
    @Path("/bridge/checkName")
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
    @Get
244
    @Get
226
    @Path("/bridge/checkShortName")
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
    @Post
250
    @Post
270
    public void deleteServer(@JdbcConn(true) Connection con, @LoginUser SessionUser sessionUser
289
    public void deleteServer(@JdbcConn(true) Connection con, @LoginUser SessionUser sessionUser
271
            , String id) throws SQLException {
290
            , String id) throws SQLException {
272
        this.bridgeServerDao.logicDelete(con, sessionUser.getId(), id);
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
    @Get
305
    @Get
326
    @Path("/device/delete")
356
    @Path("/device/delete")
327
    public void deleteDevice(@JdbcConn(true) Connection con, @LoginUser SessionUser sessionUser, String id) throws SQLException {
357
    public void deleteDevice(@JdbcConn(true) Connection con, @LoginUser SessionUser sessionUser, String id) throws SQLException {
328
        this.collectDeviceDao.logicDelete(con, sessionUser.getId(), id);
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
    @Get
364
    @Get

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

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