XMTT 6 ans auparavant
Parent
commit
07811f7ba8

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

@ -17,6 +17,7 @@ import org.jfw.apt.orm.annotation.dao.param.GroupSqlColumn;
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
@ -66,4 +67,8 @@ public interface BridgeDao {
66 67
    @SelectList
67 68
    @OrderBy("ORDER BY CODE")
68 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,7 +19,6 @@ public class BridgeServer implements BaseTable {
19 19
	private String code;
20 20
	private String seq;
21 21
	private String bridgeId;
22
	private String ip;
23 22
	private int devices;
24 23
	private String remark;
25 24
	private boolean active;
@ -62,13 +61,6 @@ public class BridgeServer implements BaseTable {
62 61
	public void setBridgeId(String bridgeId) {
63 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 64
	@Column(descp="采集盒数量",value=DE.int_de)
73 65
	public int getDevices() {
74 66
		return devices;

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

@ -182,6 +182,11 @@ public class BridgeService {
182 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 190
    @Get
186 191
    @Path("/bridge/delete")
187 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,12 +169,6 @@ public class SysService {
169 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 172
	@Post
179 173
	@Path("/changePw")
180 174
	public void changePw(@JdbcConn(true) Connection con, String id, String oldPw, String newPw) throws SQLException, JfwBaseException {
@ -225,7 +219,7 @@ public class SysService {
225 219
			throw  new JfwBaseException(-60001,"not found sessionVal");
226 220
		}
227 221
		if (System.currentTimeMillis() > timeout) {
228
			throw new JfwBaseException(-60002,"timout");
222
			throw new JfwBaseException(-60002,"timeout");
229 223
		}
230 224
		if(!vc.equals(vcode)){
231 225
			throw new JfwBaseException(-60004, "Verification code error");