Selaa lähdekoodia

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

XMTT 6 vuotta sitten
vanhempi
commit
6a36e2cf13

+ 5 - 5
src/main/java/com/ekexiu/project/bridge/servlet/AlarmDataServlet.java

139
									}
139
									}
140
									tmpObj = map.get("alarm_time");
140
									tmpObj = map.get("alarm_time");
141
									if (tmpObj != null && tmpObj instanceof String) {
141
									if (tmpObj != null && tmpObj instanceof String) {
142
										item.setStime((String) tmpObj);
142
										item.setAtime((String) tmpObj);
143
										if (msg.getAlarmTime() == null) {
143
										if (msg.getAlarmTime() == null) {
144
											String at = (String) tmpObj;
144
											String at = (String) tmpObj;
145
											at = at.substring(0, 14);
145
											at = at.substring(0, 14);
186
						CollectDevice device = this.collectDeviceDao.query(con, server.getId(), msg.getDevice());
186
						CollectDevice device = this.collectDeviceDao.query(con, server.getId(), msg.getDevice());
187
						if (device != null) {
187
						if (device != null) {
188
							String atime = items.get(0).getAtime();
188
							String atime = items.get(0).getAtime();
189
							String cnt = "您负责管理维护的桥梁:" + bridge.getShortName() + ",于" + atime.substring(0, 4) + "-" + atime.substring(4, 6) + "-"
189
							String cnt = "您负责管理维护的桥梁:" + bridge.getShortName() + ",于" + atime.substring(0, 4) + "-" + atime.substring(4, 6) + "-"
190
									+ atime.substring(6, 8) + " " + atime.substring(8, 10) + ":" + atime.substring(10, 12) + ":" + atime.substring(12, 14)
190
									+ atime.substring(6, 8) + " " + atime.substring(8, 10) + ":" + atime.substring(10, 12) + ":" + atime.substring(12, 14)
191
									+ ",编号为" + device.getCode() + "的采集盒发生一起报警事件,请尽快登录平台查看详细的报警信息。";
191
									+ ",编号为" + device.getCode() + "的采集盒发生一起报警事件,请尽快登录平台查看详细的报警信息。";
192
							List<User> users = this.userDao.queryByBridgeId(con, bridge.getId(), true);
192
							List<User> users = this.userDao.queryByBridgeId(con, bridge.getId(), true);
193
							if (users != null && users.size() > 0) {
193
							if (users != null && users.size() > 0) {
194
								for (User u : users) {
194
								for (User u : users) {
224
								String to = u.getEmail();
224
								String to = u.getEmail();
225
								try {
225
								try {
226
									if (to != null && to.length() > 0) {
226
									if (to != null && to.length() > 0) {
227
										mailService.sendSimpleMail(to, "【" + u.getName() + "您好:<br>" + entry.getValue(), null, "桥梁临控报警");
227
										mailService.sendSimpleMail(to,  u.getName() + "您好:" + entry.getValue(), null, "桥梁临控报警");
228
									}
228
									}
229
								} catch (Throwable thr) {
229
								} catch (Throwable thr) {
230
								}
230
								}
231
								to = u.getPhone();
231
								to = u.getPhone();
232
								try {
232
								try {
233
									if (to != null && to.length() > 0) {
233
									if (to != null && to.length() > 0) {
234
										phoneService.sendMessage(to, "【__USERNAME__您好:" + entry.getValue(), "__USERNAME__", u.getName());
234
										phoneService.sendMessage(to, "【声脉】__USERNAME__您好:" + entry.getValue(), "__USERNAME__", u.getName());
235
									}
235
									}
236
								} catch (Throwable thr) {
236
								} catch (Throwable thr) {
237
								}
237
								}

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

90
	@SelectList
90
	@SelectList
91
	@From(User.class)
91
	@From(User.class)
92
	List<User> queryByBridgeId(Connection con,
92
	List<User> queryByBridgeId(Connection con,
93
			@SqlColumn(value = "ID IN (SELECT UID FROM USER_BRIDGE WHERE BRIDGE=?", handlerClass = StringHandler.class) String bridge, @Nullable Boolean active)
93
			@SqlColumn(value = "ID IN (SELECT UID FROM USER_BRIDGE WHERE BRIDGE=?)", handlerClass = StringHandler.class) String bridge, @Nullable Boolean active)
94
			throws SQLException;
94
			throws SQLException;
95
}
95
}