XMTT 6 ans auparavant
Parent
commit
3f0a7196bf

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

@ -60,5 +60,9 @@ public interface BridgeDao {
60 60
61 61
    @SelectList
62 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,6 +13,7 @@ import org.jfw.apt.orm.annotation.dao.method.operator.SelectList;
13 13
import org.jfw.apt.orm.annotation.dao.method.operator.SelectOne;
14 14
import org.jfw.apt.orm.annotation.dao.method.operator.Update;
15 15
import org.jfw.apt.orm.annotation.dao.method.operator.UpdateWith;
16
import org.jfw.apt.orm.annotation.dao.param.In;
16 17
import org.jfw.apt.orm.annotation.dao.param.Set;
17 18
import org.jfw.apt.orm.annotation.dao.param.SqlColumn;
18 19
import org.jfw.apt.orm.core.defaultImpl.StringHandler;
@ -49,7 +50,10 @@ public interface BridgeServerDao {
49 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 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,6 +13,7 @@ import org.jfw.apt.orm.annotation.dao.method.operator.SelectList;
13 13
import org.jfw.apt.orm.annotation.dao.method.operator.SelectOne;
14 14
import org.jfw.apt.orm.annotation.dao.method.operator.Update;
15 15
import org.jfw.apt.orm.annotation.dao.method.operator.UpdateWith;
16
import org.jfw.apt.orm.annotation.dao.param.In;
16 17
import org.jfw.apt.orm.annotation.dao.param.Set;
17 18
import org.jfw.apt.orm.annotation.dao.param.SqlColumn;
18 19
import org.jfw.apt.orm.core.defaultImpl.StringHandler;
@ -49,5 +50,8 @@ public interface CollectDeviceDao {
49 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 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,5 +49,5 @@ public interface TransducerDao {
49 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 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,7 +31,7 @@ public class Transducer implements BaseTable {
31 31
	public void setId(String id) {
32 32
		this.id = id;
33 33
	}
34
	@Column(descp="内部编号",value=DE.text_de)
34
	@Column(descp="内部编号",value=DE.int_de)
35 35
	public int getSeq() {
36 36
		return seq;
37 37
	}

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

@ -28,8 +28,10 @@ import java.io.InputStream;
28 28
import java.io.OutputStream;
29 29
import java.sql.Connection;
30 30
import java.sql.SQLException;
31
import java.util.HashMap;
31 32
import java.util.LinkedList;
32 33
import java.util.List;
34
import java.util.Map;
33 35
import java.util.concurrent.atomic.AtomicInteger;
34 36
35 37
/**
@ -201,8 +203,8 @@ public class BridgeService {
201 203
202 204
    @Get
203 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 210
    @Post
@ -238,8 +240,8 @@ public class BridgeService {
238 240
239 241
    @Get
240 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 247
    @Get
@ -288,8 +290,8 @@ public class BridgeService {
288 290
289 291
    @Get
290 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 297
    @Post
@ -331,8 +333,29 @@ public class BridgeService {
331 333
332 334
    @Get
333 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,6 +106,12 @@ public class SysService {
106 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 115
	@Get
110 116
	@Path("/qo")
111 117
	public SessionUser query(@JdbcConn Connection con, String id) throws SQLException {
@ -205,6 +211,9 @@ public class SysService {
205 211
		if (System.currentTimeMillis() > timeout) {
206 212
			throw new JfwBaseException(-60002,"timout");
207 213
		}
214
		if(!vc.equals(vcode)){
215
			throw new JfwBaseException(-60004, "Verification code error");
216
		}
208 217
		this.userDao.updatePasswdWithMobile(con, StringUtil.md5(pw), account);
209 218
		return true;
210 219
	}