Sfoglia il codice sorgente

Merge branch 'master' of http://121.42.53.174:3000/jiapeng/bridge.git

jiapeng 6 anni fa
parent
commit
e68f1825d9

+ 5 - 0
src/main/java/com/ekexiu/project/bridge/resource/dao/BridgeDao.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
66
    @SelectList
67
    @SelectList
67
    @OrderBy("ORDER BY CODE")
68
    @OrderBy("ORDER BY CODE")
68
    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;
69
    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;
70
71
    @SelectOne
72
    @Nullable
73
    Bridge queryByCode(Connection con, String code, @Nullable @UnEquals String id) throws SQLException;
69
}
74
}

+ 0 - 8
src/main/java/com/ekexiu/project/bridge/resource/po/BridgeServer.java

19
	private String code;
19
	private String code;
20
	private String seq;
20
	private String seq;
21
	private String bridgeId;
21
	private String bridgeId;
22
	private String ip;
23
	private int devices;
22
	private int devices;
24
	private String remark;
23
	private String remark;
25
	private boolean active;
24
	private boolean active;
62
	public void setBridgeId(String bridgeId) {
61
	public void setBridgeId(String bridgeId) {
63
		this.bridgeId = bridgeId;
62
		this.bridgeId = bridgeId;
64
	}
63
	}
65
	@Column(descp="采集服务器IP",value=DE.text_de)
66
	public String getIp() {
67
		return ip;
68
	}
69
	public void setIp(String ip) {
70
		this.ip = ip;
71
	}
72
	@Column(descp="采集盒数量",value=DE.int_de)
64
	@Column(descp="采集盒数量",value=DE.int_de)
73
	public int getDevices() {
65
	public int getDevices() {
74
		return devices;
66
		return devices;

+ 5 - 0
src/main/java/com/ekexiu/project/bridge/resource/service/BridgeService.java

182
        return this.bridgeDao.queryByCode(con, code);
182
        return this.bridgeDao.queryByCode(con, code);
183
    }
183
    }
184
184
185
    @Get
186
    @Path("/bridge/checkCode")
187
    public Bridge queryByCode(@JdbcConn Connection con,String code,@Nullable String id)throws SQLException {
188
        return this.bridgeDao.queryByCode(con, code, id);
189
    }
185
    @Get
190
    @Get
186
    @Path("/bridge/delete")
191
    @Path("/bridge/delete")
187
    public void delete(@JdbcConn(true) Connection con, @LoginUser SessionUser sessionUser, String id) throws SQLException {
192
    public void delete(@JdbcConn(true) Connection con, @LoginUser SessionUser sessionUser, String id) throws SQLException {

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

169
		return null;
169
		return null;
170
	}
170
	}
171
171
172
	@Get
173
	@Path("/resetPw")
174
	public void resetPw(@JdbcConn(true) Connection con, String id) throws SQLException {
175
		this.userDao.changePw(con, DEFAULT_PW_STR, id);
176
	}
177
178
	@Post
172
	@Post
179
	@Path("/changePw")
173
	@Path("/changePw")
180
	public void changePw(@JdbcConn(true) Connection con, String id, String oldPw, String newPw) throws SQLException, JfwBaseException {
174
	public void changePw(@JdbcConn(true) Connection con, String id, String oldPw, String newPw) throws SQLException, JfwBaseException {
225
			throw  new JfwBaseException(-60001,"not found sessionVal");
219
			throw  new JfwBaseException(-60001,"not found sessionVal");
226
		}
220
		}
227
		if (System.currentTimeMillis() > timeout) {
221
		if (System.currentTimeMillis() > timeout) {
228
			throw new JfwBaseException(-60002,"timout");
222
			throw new JfwBaseException(-60002,"timeout");
229
		}
223
		}
230
		if(!vc.equals(vcode)){
224
		if(!vc.equals(vcode)){
231
			throw new JfwBaseException(-60004, "Verification code error");
225
			throw new JfwBaseException(-60004, "Verification code error");