XMTT 6 gadi atpakaļ
vecāks
revīzija
eadc4ca802

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

17
import org.jfw.apt.orm.annotation.dao.param.Like;
17
import org.jfw.apt.orm.annotation.dao.param.Like;
18
import org.jfw.apt.orm.annotation.dao.param.Set;
18
import org.jfw.apt.orm.annotation.dao.param.Set;
19
import org.jfw.apt.orm.annotation.dao.param.SqlColumn;
19
import org.jfw.apt.orm.annotation.dao.param.SqlColumn;
20
import org.jfw.apt.orm.annotation.dao.param.UnEquals;
20
import org.jfw.apt.orm.core.defaultImpl.StringHandler;
21
import org.jfw.apt.orm.core.defaultImpl.StringHandler;
21
import org.jfw.util.PageQueryResult;
22
import org.jfw.util.PageQueryResult;
22
23
52
53
53
    @SelectOne
54
    @SelectOne
54
    @Nullable
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
    @PageSelect
62
    @PageSelect
58
    @OrderBy("ORDER BY CODE")
63
    @OrderBy("ORDER BY CODE")

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

17
import org.jfw.apt.orm.annotation.dao.param.Like;
17
import org.jfw.apt.orm.annotation.dao.param.Like;
18
import org.jfw.apt.orm.annotation.dao.param.Set;
18
import org.jfw.apt.orm.annotation.dao.param.Set;
19
import org.jfw.apt.orm.annotation.dao.param.SqlColumn;
19
import org.jfw.apt.orm.annotation.dao.param.SqlColumn;
20
import org.jfw.apt.orm.annotation.dao.param.UnEquals;
20
import org.jfw.apt.orm.core.defaultImpl.StringHandler;
21
import org.jfw.apt.orm.core.defaultImpl.StringHandler;
21
import org.jfw.util.PageQueryResult;
22
import org.jfw.util.PageQueryResult;
22
23
52
53
53
    @SelectOne
54
    @SelectOne
54
    @Nullable
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
    @SelectOne
58
    @SelectOne
58
    @Nullable
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
    @PageSelect
62
    @PageSelect
62
    @OrderBy("ORDER BY CODE")
63
    @OrderBy("ORDER BY CODE")

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

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.Set;
16
import org.jfw.apt.orm.annotation.dao.param.Set;
17
import org.jfw.apt.orm.annotation.dao.param.SqlColumn;
17
import org.jfw.apt.orm.annotation.dao.param.SqlColumn;
18
import org.jfw.apt.orm.annotation.dao.param.UnEquals;
18
import org.jfw.apt.orm.core.defaultImpl.StringHandler;
19
import org.jfw.apt.orm.core.defaultImpl.StringHandler;
19
import org.jfw.util.PageQueryResult;
20
import org.jfw.util.PageQueryResult;
20
21
46
47
47
    @SelectOne
48
    @SelectOne
48
    @Nullable
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
    @SelectOne
52
    @SelectOne
52
    @Nullable
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
    @PageSelect
56
    @PageSelect
56
    @OrderBy("ORDER BY CODE")
57
    @OrderBy("ORDER BY CODE")

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

259
259
260
260
261
    @Get
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
    @Post
273
    @Post
314
    }
320
    }
315
321
316
    @Get
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
    @Get
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
    @Post
334
    @Post
371
    }
377
    }
372
378
373
    @Get
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
    @Get
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
    @Get
391
    @Get

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

60
		this.mobilePhoneService = mobilePhoneService;
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
	@SetSession("JFW_SESSION_LOGIN_USER=result")
79
	@SetSession("JFW_SESSION_LOGIN_USER=result")
64
	@Path("/login")
80
	@Path("/login")
65
	@Post
81
	@Post
195
		Object[] result = new Object[3];
211
		Object[] result = new Object[3];
196
		result[0] = account;
212
		result[0] = account;
197
		result[1] = vcode;
213
		result[1] = vcode;
198
		result[2] = System.currentTimeMillis() + 5000 + (5 * 60 * 1000);
214
		result[2] = System.currentTimeMillis() + 5000 + (3 * 60 * 1000);
199
		return result;
215
		return result;
200
	}
216
	}
201
217

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

30
#默认的SQL语句自动提交状态(开启或关闭)设置由连接池本身设置(false由连接池定)
30
#默认的SQL语句自动提交状态(开启或关闭)设置由连接池本身设置(false由连接池定)
31
dataSource.defaultAutoCommit::boolean=false
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