XMTT 6 ans auparavant
Parent
commit
eadc4ca802

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

@ -17,6 +17,7 @@ import org.jfw.apt.orm.annotation.dao.param.In;
17 17
import org.jfw.apt.orm.annotation.dao.param.Like;
18 18
import org.jfw.apt.orm.annotation.dao.param.Set;
19 19
import org.jfw.apt.orm.annotation.dao.param.SqlColumn;
20
import org.jfw.apt.orm.annotation.dao.param.UnEquals;
20 21
import org.jfw.apt.orm.core.defaultImpl.StringHandler;
21 22
import org.jfw.util.PageQueryResult;
22 23
@ -52,7 +53,11 @@ public interface BridgeServerDao {
52 53
53 54
    @SelectOne
54 55
    @Nullable
55
    BridgeServer queryByCode(Connection con,String code) throws SQLException;
56
    BridgeServer queryByCode(Connection con, String code, @Nullable @UnEquals String id) throws SQLException;
57
58
    @SelectOne
59
    @Nullable
60
    BridgeServer checkBySeq(Connection con, String seq, @Nullable @UnEquals String id) throws SQLException;
56 61
57 62
    @PageSelect
58 63
    @OrderBy("ORDER BY CODE")

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

@ -17,6 +17,7 @@ import org.jfw.apt.orm.annotation.dao.param.In;
17 17
import org.jfw.apt.orm.annotation.dao.param.Like;
18 18
import org.jfw.apt.orm.annotation.dao.param.Set;
19 19
import org.jfw.apt.orm.annotation.dao.param.SqlColumn;
20
import org.jfw.apt.orm.annotation.dao.param.UnEquals;
20 21
import org.jfw.apt.orm.core.defaultImpl.StringHandler;
21 22
import org.jfw.util.PageQueryResult;
22 23
@ -52,11 +53,11 @@ public interface CollectDeviceDao {
52 53
53 54
    @SelectOne
54 55
    @Nullable
55
    CollectDevice queryBySeqAndServer(Connection con,@SqlColumn(handlerClass = StringHandler.class,value = "SERVER_ID IN (SELECT ID FROM BRIDGE_SERVER WHERE CODE = ?)")String serverCode, int seq) throws SQLException;
56
    CollectDevice queryBySeqAndServer(Connection con, @SqlColumn(handlerClass = StringHandler.class,value = "SERVER_ID IN (SELECT ID FROM BRIDGE_SERVER WHERE CODE = ?)")String serverId, int seq, @Nullable @UnEquals String id) throws SQLException;
56 57
57 58
    @SelectOne
58 59
    @Nullable
59
    CollectDevice queryByCode(Connection con,String code) throws SQLException;
60
    CollectDevice queryByCode(Connection con,String code,@Nullable @UnEquals String id) throws SQLException;
60 61
61 62
    @PageSelect
62 63
    @OrderBy("ORDER BY CODE")

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

@ -15,6 +15,7 @@ import org.jfw.apt.orm.annotation.dao.method.operator.Update;
15 15
import org.jfw.apt.orm.annotation.dao.method.operator.UpdateWith;
16 16
import org.jfw.apt.orm.annotation.dao.param.Set;
17 17
import org.jfw.apt.orm.annotation.dao.param.SqlColumn;
18
import org.jfw.apt.orm.annotation.dao.param.UnEquals;
18 19
import org.jfw.apt.orm.core.defaultImpl.StringHandler;
19 20
import org.jfw.util.PageQueryResult;
20 21
@ -46,11 +47,11 @@ public interface TransducerDao {
46 47
47 48
    @SelectOne
48 49
    @Nullable
49
    Transducer queryBySeqAndDevice(Connection con,@SqlColumn(handlerClass = StringHandler.class,value = "DEVICE_ID IN (SELECT ID FROM COLLECT_DEVICE WHERE SERVER_ID IN (SELECT SERVER_ID FROM COLLECT_DEVICE WHERE CODE = ?))")String deviceCode, int seq) throws SQLException;
50
    Transducer queryBySeqAndDeviceFromServer(Connection con,@SqlColumn(handlerClass = StringHandler.class,value = "DEVICE_ID IN (SELECT ID FROM COLLECT_DEVICE WHERE SERVER_ID IN (SELECT SERVER_ID FROM COLLECT_DEVICE WHERE ID = ?))")String deviceId, int seq,@Nullable @UnEquals String id) throws SQLException;
50 51
51 52
    @SelectOne
52 53
    @Nullable
53
    Transducer queryByCode(Connection con,String code) throws SQLException;
54
    Transducer queryByCode(Connection con,String code,@Nullable @UnEquals String id) throws SQLException;
54 55
55 56
    @PageSelect
56 57
    @OrderBy("ORDER BY CODE")

+ 21 - 15
src/main/java/com/ekexiu/project/bridge/resource/service/BridgeService.java

@ -259,9 +259,15 @@ public class BridgeService {
259 259
260 260
261 261
    @Get
262
    @Path("/server/qoBySeq")
263
    public BridgeServer serverBySeq(@JdbcConn Connection con,String seq)throws SQLException {
264
        return this.bridgeServerDao.queryBySeq(con, seq);
262
    @Path("/server/checkSeq")
263
    public BridgeServer serverBySeq(@JdbcConn Connection con,String seq,@Nullable String id)throws SQLException {
264
        return this.bridgeServerDao.checkBySeq(con, seq,id);
265
    }
266
267
    @Get
268
    @Path("/server/checkCode")
269
    public BridgeServer serverByCode(@JdbcConn Connection con,String code,@Nullable String id)throws SQLException {
270
        return this.bridgeServerDao.queryByCode(con, code, id);
265 271
    }
266 272
267 273
    @Post
@ -314,15 +320,15 @@ public class BridgeService {
314 320
    }
315 321
316 322
    @Get
317
    @Path("/device/qoByCode")
318
    public CollectDevice deviceByCode(@JdbcConn Connection con,String code)throws SQLException {
319
        return this.collectDeviceDao.queryByCode(con, code);
323
    @Path("/device/checkCode")
324
    public CollectDevice deviceByCode(@JdbcConn Connection con,String code,@Nullable String id)throws SQLException {
325
        return this.collectDeviceDao.queryByCode(con, code,id);
320 326
    }
321 327
322 328
    @Get
323
    @Path("/device/serverDevice")
324
    public CollectDevice serverDevice(@JdbcConn Connection con,String serverCode,int seq) throws SQLException {
325
        return this.collectDeviceDao.queryBySeqAndServer(con, serverCode, seq);
329
    @Path("/device/checkSeq")
330
    public CollectDevice serverDevice(@JdbcConn Connection con,String serverId,int seq,@Nullable String id) throws SQLException {
331
        return this.collectDeviceDao.queryBySeqAndServer(con, serverId, seq,id);
326 332
    }
327 333
328 334
    @Post
@ -371,15 +377,15 @@ public class BridgeService {
371 377
    }
372 378
373 379
    @Get
374
    @Path("/transducer/qoByCode")
375
    public Transducer qoByCode(@JdbcConn Connection con,String code)throws SQLException{
376
        return this.transducerDao.queryByCode(con, code);
380
    @Path("/transducer/checkCode")
381
    public Transducer qoByCode(@JdbcConn Connection con,String code,@Nullable String id)throws SQLException{
382
        return this.transducerDao.queryByCode(con, code,id);
377 383
    }
378 384
379 385
    @Get
380
    @Path("/transducer/deviceTransducer")
381
    public Transducer deviceTransducer(@JdbcConn Connection con,String deviceCode,int seq)throws SQLException {
382
        return this.transducerDao.queryBySeqAndDevice(con, deviceCode, seq);
386
    @Path("/transducer/checkSeq")
387
    public Transducer deviceTransducer(@JdbcConn Connection con,String deviceId,int seq,@Nullable String id)throws SQLException {
388
        return this.transducerDao.queryBySeqAndDeviceFromServer(con, deviceId, seq,id);
383 389
    }
384 390
385 391
    @Get

+ 17 - 1
src/main/java/com/ekexiu/project/bridge/system/service/SysService.java

@ -60,6 +60,22 @@ public class SysService {
60 60
		this.mobilePhoneService = mobilePhoneService;
61 61
	}
62 62
63
	public String getRegMobilePhoneReplaceKey() {
64
		return regMobilePhoneReplaceKey;
65
	}
66
67
	public void setRegMobilePhoneReplaceKey(String regMobilePhoneReplaceKey) {
68
		this.regMobilePhoneReplaceKey = regMobilePhoneReplaceKey;
69
	}
70
71
	public String getRegMobilePhoneContentTemplate() {
72
		return regMobilePhoneContentTemplate;
73
	}
74
75
	public void setRegMobilePhoneContentTemplate(String regMobilePhoneContentTemplate) {
76
		this.regMobilePhoneContentTemplate = regMobilePhoneContentTemplate;
77
	}
78
63 79
	@SetSession("JFW_SESSION_LOGIN_USER=result")
64 80
	@Path("/login")
65 81
	@Post
@ -195,7 +211,7 @@ public class SysService {
195 211
		Object[] result = new Object[3];
196 212
		result[0] = account;
197 213
		result[1] = vcode;
198
		result[2] = System.currentTimeMillis() + 5000 + (5 * 60 * 1000);
214
		result[2] = System.currentTimeMillis() + 5000 + (3 * 60 * 1000);
199 215
		return result;
200 216
	}
201 217

+ 5 - 1
src/main/resources/project.properties

@ -30,4 +30,8 @@ dataSource.maxPoolPreparedStatementPerConnectionSize::int=20
30 30
#默认的SQL语句自动提交状态(开启或关闭)设置由连接池本身设置(false由连接池定)
31 31
dataSource.defaultAutoCommit::boolean=false
32 32
33
com_ekexiu_project_bridge_resource_service_BridgeService.imgPath::java.io.File=/bridge/web_data/data/bridge
33
com_ekexiu_project_bridge_resource_service_BridgeService.imgPath::java.io.File=/bridge/web_data/data/bridge
34
35
com_ekexiu_project_bridge_system_service_SysService.regMobilePhoneContentTemplate=【声脉】您的验证码为yzm,请于3分钟内正确输入,如非本人操作,请忽略此短信。
36
37
com_ekexiu_project_bridge_system_service_SysService.regMobilePhoneReplaceKey=yzm