XMTT 6 years ago
parent
commit
fc97b7137d

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

63
63
64
    @PageSelect
64
    @PageSelect
65
    @OrderBy("ORDER BY CODE")
65
    @OrderBy("ORDER BY CODE")
66
    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;
66
    PageQueryResult<BridgeServer> pageQuery(Connection con, @Nullable Boolean active, @Nullable @SqlColumn(handlerClass = StringHandler.class, value = {"BRIDGE_ID IN (SELECT ID FROM BRIDGE WHERE CODE = ?)"}) String bridgeCode, @Nullable String code, int pageSize, int pageNo) throws SQLException;
67
67
68
    @SelectList
68
    @SelectList
69
    List<BridgeServer> queryByBridge(Connection con,@Nullable Boolean active, String bridgeId) throws SQLException;
69
    List<BridgeServer> queryByBridge(Connection con,@Nullable Boolean active, String bridgeId) throws SQLException;

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

63
63
64
    @PageSelect
64
    @PageSelect
65
    @OrderBy("ORDER BY CODE")
65
    @OrderBy("ORDER BY CODE")
66
    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;
66
    PageQueryResult<CollectDevice> pageQuery(Connection con, @Nullable Boolean active, @Nullable @SqlColumn(handlerClass = StringHandler.class, value = {"SERVER_ID IN (SELECT ID FROM BRIDGE_SERVER WHERE CODE = ?)"}) String serverCode, @Nullable String code, int pageSize, int pageNo) throws SQLException;
67
67
68
    @SelectList
68
    @SelectList
69
    List<CollectDevice> queryByServer(Connection con,@Nullable Boolean active, String serverId) throws SQLException;
69
    List<CollectDevice> queryByServer(Connection con,@Nullable Boolean active, String serverId) throws SQLException;

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

58
58
59
    @PageSelect
59
    @PageSelect
60
    @OrderBy("ORDER BY CODE")
60
    @OrderBy("ORDER BY CODE")
61
    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;
61
    PageQueryResult<Transducer> pageQuery(Connection con, @Nullable Boolean active, @Nullable @SqlColumn(handlerClass = StringHandler.class, value = {"DEVICE_ID IN (SELECT ID FROM COLLECT_DEVICE WHERE CODE = ?)"}) String collectDeviceCode, @Nullable String code, int pageSize, int pageNo) throws SQLException;
62
62
63
    @SelectList
63
    @SelectList
64
    List<Transducer> queryByDevice(Connection con,@Nullable Boolean active, String deviceId) throws SQLException;
64
    List<Transducer> queryByDevice(Connection con,@Nullable Boolean active, String deviceId) throws SQLException;

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

171
171
172
	@Post
172
	@Post
173
	@Path("/changePw")
173
	@Path("/changePw")
174
	public void changePw(@JdbcConn(true) Connection con, @LoginUser SessionUser u, String oldPw, String newPw) throws SQLException, JfwBaseException {
175
		User user = this.userDao.query(con, u.getId());
176
		if (user != null && StringUtil.md5(oldPw).equals(StringUtil.md5(user.getPasswd()))) {
177
			this.userDao.changePw(con, StringUtil.md5(newPw), u.getId());
178
		} else {
179
			throw new JfwBaseException(100001, "用户不存在或密码不匹配");
180
		}
174
	public void changePw(@JdbcConn(true) Connection con, @LoginUser SessionUser u, String newPw) throws SQLException, JfwBaseException {
175
		this.userDao.changePw(con, StringUtil.md5(newPw), u.getId());
181
	}
176
	}
182
177
183
	@Post
178
	@Post