XMTT 6 ans auparavant
Parent
commit
d0fcad7268

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

@ -9,9 +9,11 @@ import org.jfw.apt.orm.annotation.dao.method.OrderBy;
9 9
import org.jfw.apt.orm.annotation.dao.method.SetSentence;
10 10
import org.jfw.apt.orm.annotation.dao.method.operator.Insert;
11 11
import org.jfw.apt.orm.annotation.dao.method.operator.PageSelect;
12
import org.jfw.apt.orm.annotation.dao.method.operator.SelectList;
12 13
import org.jfw.apt.orm.annotation.dao.method.operator.SelectOne;
13 14
import org.jfw.apt.orm.annotation.dao.method.operator.Update;
14 15
import org.jfw.apt.orm.annotation.dao.method.operator.UpdateWith;
16
import org.jfw.apt.orm.annotation.dao.param.GroupSqlColumn;
15 17
import org.jfw.apt.orm.annotation.dao.param.Like;
16 18
import org.jfw.apt.orm.annotation.dao.param.Set;
17 19
import org.jfw.apt.orm.annotation.dao.param.SqlColumn;
@ -20,6 +22,7 @@ import org.jfw.util.PageQueryResult;
20 22
21 23
import java.sql.Connection;
22 24
import java.sql.SQLException;
25
import java.util.List;
23 26
24 27
/**
25 28
 * Created by TT on 2018/8/8.
@ -43,6 +46,10 @@ public interface BridgeDao {
43 46
    @Nullable
44 47
    Bridge query(Connection con, String id) throws SQLException;
45 48
49
    @SelectOne
50
    @Nullable
51
    Bridge queryByCode(Connection con, String code) throws SQLException;
52
46 53
    @PageSelect
47 54
    @OrderBy("ORDER BY CODE")
48 55
    PageQueryResult<Bridge> pageQuery(Connection con, @Nullable Boolean active, @Nullable @Like String name, @Nullable String code, int pageSize, int pageNo) throws SQLException;
@ -50,4 +57,8 @@ public interface BridgeDao {
50 57
    @PageSelect
51 58
    @OrderBy("ORDER BY CODE")
52 59
    PageQueryResult<Bridge> pageQuery(Connection con, @Nullable Boolean active, @SqlColumn(handlerClass = StringHandler.class, value = "ID IN(SELECT BCODE FROM USER_BRIDGE WHERE UID=?)") String uid, int pageSize, int pageNo) throws SQLException;
60
61
    @SelectList
62
    @OrderBy("ORDER BY CODE")
63
    List<Bridge> listQuery(Connection con, @GroupSqlColumn(handlerClass = StringHandler.class, value = {"NAME LIKE ?", "SHORT_NAME LIKE ?"}, isAnd = false) String key) throws SQLException;
53 64
}

+ 4 - 4
src/main/java/com/ekexiu/project/bridge/resource/po/CollectDevice.java

@ -11,7 +11,7 @@ import com.ekexiu.project.bridge.base.po.BaseTable;
11 11
@Table(descp="采集盒")
12 12
public class CollectDevice implements BaseTable {
13 13
	private String id;
14
	private String seq;
14
	private int seq;
15 15
	private String code;
16 16
	private String serverId;
17 17
	private int	channels;
@ -35,11 +35,11 @@ public class CollectDevice implements BaseTable {
35 35
	public void setId(String id) {
36 36
		this.id = id;
37 37
	}
38
	@Column(descp="内部编号",value=DE.text_de)
39
	public String getSeq() {
38
	@Column(descp="内部编号",value=DE.int_de)
39
	public int getSeq() {
40 40
		return seq;
41 41
	}
42
	public void setSeq(String seq) {
42
	public void setSeq(int seq) {
43 43
		this.seq = seq;
44 44
	}
45 45
	@Column(descp="采集盒编号",value=DE.text_de)

+ 3 - 3
src/main/java/com/ekexiu/project/bridge/resource/po/Transducer.java

@ -12,7 +12,7 @@ public class Transducer implements BaseTable {
12 12
	private String id;
13 13
	private String code;
14 14
	private String deviceId;
15
	private String seq;
15
	private int seq;
16 16
	private String cableType;
17 17
	private String locType;
18 18
	private String remark;
@ -32,10 +32,10 @@ public class Transducer implements BaseTable {
32 32
		this.id = id;
33 33
	}
34 34
	@Column(descp="内部编号",value=DE.text_de)
35
	public String getSeq() {
35
	public int getSeq() {
36 36
		return seq;
37 37
	}
38
	public void setSeq(String seq) {
38
	public void setSeq(int seq) {
39 39
		this.seq = seq;
40 40
	}
41 41
	@Column(descp="采集盒编号",value=DE.text_de)

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

@ -83,6 +83,13 @@ public class BridgeService {
83 83
        this.transducerDao = transducerDao;
84 84
    }
85 85
86
    public File getImgPath() {
87
        return imgPath;
88
    }
89
90
    public void setImgPath(File imgPath) {
91
        this.imgPath = imgPath;
92
    }
86 93
87 94
    /**
88 95
     * 上传文件
@ -167,6 +174,12 @@ public class BridgeService {
167 174
        return this.bridgeDao.query(con, id);
168 175
    }
169 176
177
    @Get
178
    @Path("/bridge/byCode")
179
    public Bridge queryByCode(@JdbcConn Connection con,String code)throws SQLException {
180
        return this.bridgeDao.queryByCode(con, code);
181
    }
182
170 183
    @Get
171 184
    @Path("/bridge/delete")
172 185
    public void delete(@JdbcConn(true) Connection con, @LoginUser SessionUser sessionUser, String id) throws SQLException {
@ -186,6 +199,12 @@ public class BridgeService {
186 199
        return this.bridgeDao.pageQuery(con, active, name == null ? null : "%" + name + "%", code, pageSize, pageNo);
187 200
    }
188 201
202
    @Get
203
    @Path("/bridge/list")
204
    public List<Bridge> listQuery(@JdbcConn Connection con,@Nullable String key)throws SQLException {
205
        return this.bridgeDao.listQuery(con, key == null ? null : "%" + key + "%");
206
    }
207
189 208
    @Post
190 209
    @Path("/server")
191 210
    public String insert(@JdbcConn(true) Connection con, @LoginUser SessionUser sessionUser, BridgeServer bridgeServer) throws SQLException {

+ 6 - 8
src/main/java/com/ekexiu/project/bridge/right/po/UserBridge.java

@ -8,7 +8,7 @@ import org.jfw.apt.orm.core.enums.DE;
8 8
public class UserBridge {
9 9

10 10
	private String uid;
11
	private String bcode;
11
	private String bridge;
12 12
	
13 13
	@Column(descp="用户ID",value= DE.rtext_de)
14 14
	public String getUid() {
@ -18,13 +18,11 @@ public class UserBridge {
18 18
	public void setUid(String uid) {
19 19
		this.uid = uid;
20 20
	}
21
	@Column(descp="桥梁编号",value= DE.rtext_de)
22
	public String getBcode() {
23
		return bcode;
21
	@Column(descp="桥梁ID",value= DE.rtext_de)
22
	public String getBridge() {
23
		return bridge;
24 24
	}
25
	public void setBcode(String bcode) {
26
		this.bcode = bcode;
25
	public void setBridge(String bridge) {
26
		this.bridge = bridge;
27 27
	}
28
	
29
	
30 28
}

+ 11 - 0
src/main/java/com/ekexiu/project/bridge/system/dao/UserDao.java

@ -1,8 +1,10 @@
1 1
package com.ekexiu.project.bridge.system.dao;
2 2
3
import com.ekexiu.project.bridge.right.po.UserBridge;
3 4
import com.ekexiu.project.bridge.system.po.Notice;
4 5
import com.ekexiu.project.bridge.system.po.User;
5 6
import org.jfw.apt.annotation.Nullable;
7
import org.jfw.apt.orm.annotation.dao.Batch;
6 8
import org.jfw.apt.orm.annotation.dao.DAO;
7 9
import org.jfw.apt.orm.annotation.dao.Dynamic;
8 10
import org.jfw.apt.orm.annotation.dao.method.Exclude;
@ -10,6 +12,7 @@ import org.jfw.apt.orm.annotation.dao.method.From;
10 12
import org.jfw.apt.orm.annotation.dao.method.IncludeFixSet;
11 13
import org.jfw.apt.orm.annotation.dao.method.SetSentence;
12 14
import org.jfw.apt.orm.annotation.dao.method.Where;
15
import org.jfw.apt.orm.annotation.dao.method.operator.DeleteWith;
13 16
import org.jfw.apt.orm.annotation.dao.method.operator.Insert;
14 17
import org.jfw.apt.orm.annotation.dao.method.operator.PageSelect;
15 18
import org.jfw.apt.orm.annotation.dao.method.operator.SelectOne;
@ -69,4 +72,12 @@ public interface UserDao {
69 72
    @Nullable
70 73
    @SelectOne
71 74
    User queryByAccount(Connection con,String account)throws SQLException;
75
76
    @Insert
77
    @Batch
78
    int[] insert(Connection con, UserBridge[] userBridges) throws SQLException;
79
80
    @DeleteWith
81
    @From(UserBridge.class)
82
    int delete(Connection con, String uid) throws SQLException;
72 83
}

+ 55 - 41
src/main/java/com/ekexiu/project/bridge/system/service/SysService.java

@ -1,12 +1,10 @@
1 1
package com.ekexiu.project.bridge.system.service;
2 2
3
import java.sql.Connection;
4
import java.sql.SQLException;
5
import java.util.ArrayList;
6
import java.util.List;
7
import java.util.Random;
8
import java.util.concurrent.TimeUnit;
9
3
import com.ekexiu.project.bridge.mobile.MobilePhoneService;
4
import com.ekexiu.project.bridge.right.po.UserBridge;
5
import com.ekexiu.project.bridge.system.dao.UserDao;
6
import com.ekexiu.project.bridge.system.po.User;
7
import com.ekexiu.project.bridge.system.vo.SessionUser;
10 8
import org.jfw.apt.annotation.Autowrie;
11 9
import org.jfw.apt.annotation.DefaultValue;
12 10
import org.jfw.apt.annotation.Nullable;
@ -21,14 +19,13 @@ import org.jfw.apt.web.annotation.param.JdbcConn;
21 19
import org.jfw.apt.web.annotation.param.SessionVal;
22 20
import org.jfw.util.PageQueryResult;
23 21
import org.jfw.util.StringUtil;
24
import org.jfw.util.context.JfwAppContext;
25 22
import org.jfw.util.exception.JfwBaseException;
26
import org.jfw.util.state.StateCode;
27 23
28
import com.ekexiu.project.bridge.mobile.MobilePhoneService;
29
import com.ekexiu.project.bridge.system.dao.UserDao;
30
import com.ekexiu.project.bridge.system.po.User;
31
import com.ekexiu.project.bridge.system.vo.SessionUser;
24
import java.sql.Connection;
25
import java.sql.SQLException;
26
import java.util.ArrayList;
27
import java.util.List;
28
import java.util.Random;
32 29
33 30
/**
34 31
 * Created by TT on 2018/8/7.
@ -66,26 +63,26 @@ public class SysService {
66 63
	@SetSession("JFW_SESSION_LOGIN_USER=result")
67 64
	@Path("/login")
68 65
	@Post
69
	public SessionUser login(@JdbcConn Connection con, String account, String pw, String vc, @Nullable @SessionVal(value ="PIC_LOGIN",remove= true) String code,
70
			@Nullable @SessionVal(value ="TIMEOUT_PIC_LOGIN",remove=true) Long timeout) throws SQLException {
71
		if (code == null || timeout == null) {
72
			return null;
73
		}
74
		if (!vc.equals(code)) {
75
			return null;
76
		}
77
		if (System.currentTimeMillis() > timeout) {
78
			return null;
79
		}
80
		User user = userDao.login(con, account, StringUtil.md5(pw));
81
		if (user != null) {
82
			return makeSessionUser(user);
83
		}
84
		return null;
66
    public SessionUser login(@JdbcConn Connection con, String account, String pw, String vc, @Nullable @SessionVal(value = "PIC_LOGIN", remove = true) String code,
67
                             @Nullable @SessionVal(value = "TIMEOUT_PIC_LOGIN", remove = true) Long timeout) throws SQLException, JfwBaseException {
68
        if (code == null || timeout == null) {
69
            throw new JfwBaseException(-60001, "not found sessionVal");
70
        }
71
        if (!vc.equals(code)) {
72
            throw new JfwBaseException(-60003, "vc not right");
73
        }
74
        if (System.currentTimeMillis() > timeout) {
75
            throw new JfwBaseException(-60002, "timeout");
76
        }
77
        User user = userDao.login(con, account, StringUtil.md5(pw));
78
        if (user != null) {
79
            return makeSessionUser(user);
80
        }
81
        return null;
85 82
	}
86 83
87 84
	@Get
88
	@Path("")
85
	@Path("/user")
89 86
	public SessionUser get(@LoginUser SessionUser user) {
90 87
		return user;
91 88
	}
@ -98,14 +95,15 @@ public class SysService {
98 95
99 96
	@Post
100 97
	@Path("/insert")
101
	public void insert(@JdbcConn(true) Connection con, @LoginUser SessionUser sessionUser, User user) throws SQLException {
102
		user.setId(StringUtil.buildUUID());
98
	public String insert(@JdbcConn(true) Connection con, @LoginUser SessionUser sessionUser, User user) throws SQLException {
99
		String id = StringUtil.buildUUID();
100
		user.setId(id);
103 101
		user.setActive(true);
104 102
		user.setPasswd(DEFAULT_PW_STR);
105
		user.setType(0);
106 103
		user.setCreator(sessionUser.getId());
107 104
		user.setModifier(sessionUser.getId());
108 105
		this.userDao.insert(con, user);
106
		return id;
109 107
	}
110 108
111 109
	@Get
@ -172,11 +170,11 @@ public class SysService {
172 170
		this.userDao.updateNotice(con, cnt, sessionUser.getId());
173 171
	}
174 172
175
	@SetSession({ "RESET_PW_MOBILE=result[0]", "RESET_PW_VC=result[1]", "RESET_PW_TO=result[2]" })
176
	@ResultToNull
177
	@Get
178
	@Path("/regmobilephone")
179
	public Object[] regMobilePhone(@JdbcConn(false) Connection con, String account, @DefaultValue("false") boolean checkExists) throws Exception {
173
    @SetSession({"RESET_PW_MOBILE=result[0]", "RESET_PW_VC=result[1]", "RESET_PW_TO=result[2]"})
174
    @ResultToNull
175
    @Get
176
    @Path("/resetPwMobile")
177
    public Object[] resetpwMobile(@JdbcConn(false) Connection con, String account, @DefaultValue("false") boolean checkExists) throws Exception {
180 178
		if (checkExists) {
181 179
			User user = this.userDao.queryByAccount(con, account);
182 180
			if (null != user) {
@ -200,17 +198,33 @@ public class SysService {
200 198
	public boolean resetPassword(@JdbcConn(true) Connection con, String pw, String vc,
201 199
			@Nullable @SessionVal(value = "RESET_PW_MOBILE", remove = true) String account,
202 200
			@Nullable @SessionVal(value = "RESET_PW_VC", remove = true) String vcode, @Nullable @SessionVal(value = "RESET_PW_TO", remove = true) Long timeout)
203
			throws SQLException, JfwBaseException {
201
			throws SQLException,JfwBaseException {
204 202
		if (vcode == null || account == null || timeout == null) {
205
			return false;
203
			throw  new JfwBaseException(-60001,"not found sessionVal");
206 204
		}
207 205
		if (System.currentTimeMillis() > timeout) {
208
			return false;
206
			throw new JfwBaseException(-60002,"timout");
209 207
		}
210 208
		this.userDao.updatePasswdWithMobile(con, StringUtil.md5(pw), account);
211 209
		return true;
212 210
	}
213 211
212
	@Post
213
	@Path("/userBridge/refresh")
214
	public void refresh(@JdbcConn(true)Connection con,String id,String[] bridges)throws SQLException {
215
		this.userDao.delete(con, id);
216
		if (bridges != null && bridges.length > 0) {
217
			UserBridge[] userBridges = new UserBridge[bridges.length];
218
			for (int i = 0; i < bridges.length; ++i) {
219
				UserBridge ub = new UserBridge();
220
				ub.setUid(id);
221
				ub.setBridge(bridges[i]);
222
				userBridges[i] = ub;
223
			}
224
			this.userDao.insert(con, userBridges);
225
		}
226
	}
227
214 228
	private static SessionUser makeSessionUser(User user) {
215 229
		SessionUser sessionUser = new SessionUser();
216 230
		sessionUser.setAccount(user.getAccount());