XMTT 6 years ago
parent
commit
3f0a7196bf

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

60
60
61
    @SelectList
61
    @SelectList
62
    @OrderBy("ORDER BY CODE")
62
    @OrderBy("ORDER BY CODE")
63
    List<Bridge> listQuery(Connection con, @GroupSqlColumn(handlerClass = StringHandler.class, value = {"NAME LIKE ?", "SHORT_NAME LIKE ?"}, isAnd = false) String key) throws SQLException;
63
    List<Bridge> listQueryByKey(Connection con,@Nullable Boolean active, @GroupSqlColumn(handlerClass = StringHandler.class, value = {"NAME LIKE ?", "SHORT_NAME LIKE ?"}, isAnd = false) String key) throws SQLException;
64
65
    @SelectList
66
    @OrderBy("ORDER BY CODE")
67
    List<Bridge> listQueryByUser(Connection con,@Nullable Boolean active,  @SqlColumn(handlerClass = StringHandler.class, value = "ID IN(SELECT BRIDGE FROM USER_BRIDGE WHERE UID=?)") String uid) throws SQLException;
64
}
68
}

+ 5 - 1
src/main/java/com/ekexiu/project/bridge/resource/dao/BridgeServerDao.java

13
import org.jfw.apt.orm.annotation.dao.method.operator.SelectOne;
13
import org.jfw.apt.orm.annotation.dao.method.operator.SelectOne;
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.Set;
17
import org.jfw.apt.orm.annotation.dao.param.Set;
17
import org.jfw.apt.orm.annotation.dao.param.SqlColumn;
18
import org.jfw.apt.orm.annotation.dao.param.SqlColumn;
18
import org.jfw.apt.orm.core.defaultImpl.StringHandler;
19
import org.jfw.apt.orm.core.defaultImpl.StringHandler;
49
    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;
50
    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;
50
51
51
    @SelectList
52
    @SelectList
52
    List<BridgeServer> queryByBridge(Connection con, @SqlColumn(handlerClass = StringHandler.class, value = "ID IN (SELECT ID FROM BRIDGE_SERVER WHERE BRIDGE_ID = ?)") String id) throws SQLException;
53
    List<BridgeServer> queryByBridge(Connection con,@Nullable Boolean active, String bridgeId) throws SQLException;
54
55
    @SelectList
56
    List<BridgeServer> queryByBridges(Connection con, @Nullable Boolean active, @In String[] bridgeId) throws SQLException;
53
}
57
}
54
58
55
59

+ 5 - 1
src/main/java/com/ekexiu/project/bridge/resource/dao/CollectDeviceDao.java

13
import org.jfw.apt.orm.annotation.dao.method.operator.SelectOne;
13
import org.jfw.apt.orm.annotation.dao.method.operator.SelectOne;
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.Set;
17
import org.jfw.apt.orm.annotation.dao.param.Set;
17
import org.jfw.apt.orm.annotation.dao.param.SqlColumn;
18
import org.jfw.apt.orm.annotation.dao.param.SqlColumn;
18
import org.jfw.apt.orm.core.defaultImpl.StringHandler;
19
import org.jfw.apt.orm.core.defaultImpl.StringHandler;
49
    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;
50
    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;
50
51
51
    @SelectList
52
    @SelectList
52
    List<CollectDevice> querydByServer(Connection con, @SqlColumn(handlerClass = StringHandler.class, value = "ID IN (SELECT ID FROM COLLECT_DEVICE WHERE SERVER_ID = ?)") String id) throws SQLException;
53
    List<CollectDevice> queryByServer(Connection con,@Nullable Boolean active, String serverId) throws SQLException;
54
55
    @SelectList
56
    List<CollectDevice> queryByServers(Connection con, @Nullable Boolean active, @In String[] serverId) throws SQLException;
53
}
57
}

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

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;
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;
50
50
51
    @SelectList
51
    @SelectList
52
    List<Transducer> queryByDevice(Connection con, @SqlColumn(handlerClass = StringHandler.class, value = "ID IN (SELECT ID FROM TRANSDUCER WHERE DEVICE_ID = ?)") String id) throws SQLException;
52
    List<Transducer> queryByDevice(Connection con,@Nullable Boolean active, String deviceId) throws SQLException;
53
}
53
}

+ 1 - 1
src/main/java/com/ekexiu/project/bridge/resource/po/Transducer.java

31
	public void setId(String id) {
31
	public void setId(String id) {
32
		this.id = id;
32
		this.id = id;
33
	}
33
	}
34
	@Column(descp="内部编号",value=DE.text_de)
34
	@Column(descp="内部编号",value=DE.int_de)
35
	public int getSeq() {
35
	public int getSeq() {
36
		return seq;
36
		return seq;
37
	}
37
	}

+ 31 - 8
src/main/java/com/ekexiu/project/bridge/resource/service/BridgeService.java

28
import java.io.OutputStream;
28
import java.io.OutputStream;
29
import java.sql.Connection;
29
import java.sql.Connection;
30
import java.sql.SQLException;
30
import java.sql.SQLException;
31
import java.util.HashMap;
31
import java.util.LinkedList;
32
import java.util.LinkedList;
32
import java.util.List;
33
import java.util.List;
34
import java.util.Map;
33
import java.util.concurrent.atomic.AtomicInteger;
35
import java.util.concurrent.atomic.AtomicInteger;
34
36
35
/**
37
/**
201
203
202
    @Get
204
    @Get
203
    @Path("/bridge/list")
205
    @Path("/bridge/list")
204
    public List<Bridge> listQuery(@JdbcConn Connection con,@Nullable String key)throws SQLException {
205
        return this.bridgeDao.listQuery(con, key == null ? null : "%" + key + "%");
206
    public List<Bridge> listQuery(@JdbcConn Connection con,@Nullable Boolean active,@Nullable String key)throws SQLException {
207
        return this.bridgeDao.listQueryByKey(con,active, key == null ? null : "%" + key + "%");
206
    }
208
    }
207
209
208
    @Post
210
    @Post
238
240
239
    @Get
241
    @Get
240
    @Path("/server/byBridge")
242
    @Path("/server/byBridge")
241
    public List<BridgeServer> queryByBridge(@JdbcConn Connection con,String id)throws SQLException {
242
        return this.bridgeServerDao.queryByBridge(con, id);
243
    public List<BridgeServer> queryByBridge(@JdbcConn Connection con,@Nullable Boolean active, String id)throws SQLException {
244
        return this.bridgeServerDao.queryByBridge(con,active, id);
243
    }
245
    }
244
246
245
    @Get
247
    @Get
288
290
289
    @Get
291
    @Get
290
    @Path("/device/byServer")
292
    @Path("/device/byServer")
291
    public List<CollectDevice> queryByServer(@JdbcConn Connection con,String id)throws SQLException {
292
        return this.collectDeviceDao.querydByServer(con, id);
293
    public List<CollectDevice> queryByServer(@JdbcConn Connection con,@Nullable Boolean active,String id)throws SQLException {
294
        return this.collectDeviceDao.queryByServer(con,active, id);
293
    }
295
    }
294
296
295
    @Post
297
    @Post
331
333
332
    @Get
334
    @Get
333
    @Path("/transducer/byDevice")
335
    @Path("/transducer/byDevice")
334
    public List<Transducer> queryByDevcie(@JdbcConn Connection con,String id)throws SQLException {
335
        return this.transducerDao.queryByDevice(con, id);
336
    public List<Transducer> queryByDevcie(@JdbcConn Connection con,@Nullable Boolean active, String id)throws SQLException {
337
        return this.transducerDao.queryByDevice(con,active,id);
338
    }
339
340
    @Get
341
    @Path("/all/byUser")
342
    public Map<String,Object> queryAll(@JdbcConn Connection con,@Nullable Boolean active, String id)throws SQLException {
343
        Map<String, Object> map = new HashMap<>();
344
        List<Bridge> bridges = this.bridgeDao.listQueryByUser(con, active, id);
345
        String[] bridgeId = new String[bridges.size()];
346
        for(int i = 0 ; i < bridges.size() ; ++i) {
347
            bridgeId[i] = bridges.get(i).getId();
348
        }
349
        List<BridgeServer> bridgeServices = this.bridgeServerDao.queryByBridges(con, active, bridgeId);
350
        String[] serverId = new String[bridgeServices.size()];
351
        for (int i = 0; i < bridgeServices.size(); ++i) {
352
            serverId[i] = bridgeServices.get(i).getId();
353
        }
354
        List<CollectDevice> collectDevices = this.collectDeviceDao.queryByServers(con, active, serverId);
355
        map.put("bridge", bridges);
356
        map.put("server", bridgeServices);
357
        map.put("device", collectDevices);
358
        return map;
336
    }
359
    }
337
360
338
361

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

106
		return id;
106
		return id;
107
	}
107
	}
108
108
109
	@Get
110
	@Path("/check")
111
	public Boolean check(@JdbcConn Connection con,String account)throws SQLException {
112
		return this.userDao.queryByAccount(con, account) == null;
113
	}
114
109
	@Get
115
	@Get
110
	@Path("/qo")
116
	@Path("/qo")
111
	public SessionUser query(@JdbcConn Connection con, String id) throws SQLException {
117
	public SessionUser query(@JdbcConn Connection con, String id) throws SQLException {
205
		if (System.currentTimeMillis() > timeout) {
211
		if (System.currentTimeMillis() > timeout) {
206
			throw new JfwBaseException(-60002,"timout");
212
			throw new JfwBaseException(-60002,"timout");
207
		}
213
		}
214
		if(!vc.equals(vcode)){
215
			throw new JfwBaseException(-60004, "Verification code error");
216
		}
208
		this.userDao.updatePasswdWithMobile(con, StringUtil.md5(pw), account);
217
		this.userDao.updatePasswdWithMobile(con, StringUtil.md5(pw), account);
209
		return true;
218
		return true;
210
	}
219
	}