Pārlūkot izejas kodu

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

XMTT 6 gadi atpakaļ
vecāks
revīzija
6a36e2cf13

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

@ -139,7 +139,7 @@ public class AlarmDataServlet extends HttpServlet {
139 139
									}
140 140
									tmpObj = map.get("alarm_time");
141 141
									if (tmpObj != null && tmpObj instanceof String) {
142
										item.setStime((String) tmpObj);
142
										item.setAtime((String) tmpObj);
143 143
										if (msg.getAlarmTime() == null) {
144 144
											String at = (String) tmpObj;
145 145
											at = at.substring(0, 14);
@ -186,9 +186,9 @@ public class AlarmDataServlet extends HttpServlet {
186 186
						CollectDevice device = this.collectDeviceDao.query(con, server.getId(), msg.getDevice());
187 187
						if (device != null) {
188 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 190
									+ atime.substring(6, 8) + " " + atime.substring(8, 10) + ":" + atime.substring(10, 12) + ":" + atime.substring(12, 14)
191
									+ ",编号为" + device.getCode() + "的采集盒发生一起报警事件,请尽快登录平台查看详细的报警信息。";
191
									+ ",编号为" + device.getCode() + "的采集盒发生一起报警事件,请尽快登录平台查看详细的报警信息。";
192 192
							List<User> users = this.userDao.queryByBridgeId(con, bridge.getId(), true);
193 193
							if (users != null && users.size() > 0) {
194 194
								for (User u : users) {
@ -224,14 +224,14 @@ public class AlarmDataServlet extends HttpServlet {
224 224
								String to = u.getEmail();
225 225
								try {
226 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 229
								} catch (Throwable thr) {
230 230
								}
231 231
								to = u.getPhone();
232 232
								try {
233 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 236
								} catch (Throwable thr) {
237 237
								}

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

@ -90,6 +90,6 @@ public interface UserDao {
90 90
	@SelectList
91 91
	@From(User.class)
92 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 94
			throws SQLException;
95 95
}