| | |
| | | voIceTipService.addVoice(voicetip); |
| | | String content = "新增了一条信息内容,该内容类型为:"+voicetip.getWarningtype(); |
| | | String contentew = "Добавлен информационный контент, который является:"+voicetip.getWarningtype(); |
| | | SystemLogController.InsertSystemLog(user.getUsername(),gettime(),content,contentew); |
| | | String ipAddress = request.getRemoteAddr(); |
| | | SystemLogController.InsertSystemLog(user.getUsername(),gettime(),content,"新增",ipAddress); |
| | | response.sendRedirect("/hxzkuwb/HouTai/SMS/MsgReminder.jsp"); |
| | | } |
| | | |
| | |
| | | voIceTipService.upVoice(voicetip); |
| | | String content = "修改了一条信息内容,该内容类型为:"+voicetip.getWarningtype(); |
| | | String contentew = "Изменен информационный контент, который является:"+voicetip.getWarningtype(); |
| | | SystemLogController.InsertSystemLog(user.getUsername(),gettime(),content,contentew); |
| | | String ipAddress = request.getRemoteAddr(); |
| | | SystemLogController.InsertSystemLog(user.getUsername(),gettime(),content,"修改",ipAddress); |
| | | response.sendRedirect("/hxzkuwb/HouTai/SMS/MsgReminder.jsp"); |
| | | } |
| | | |
| | |
| | | voIceTipService.deVoice(id); |
| | | String content = "删除了一条信息提示内容"; |
| | | String contentew = "Удалено сообщение"; |
| | | SystemLogController.InsertSystemLog(user.getUsername(),gettime(),content,contentew); |
| | | String ipAddress = request.getRemoteAddr(); |
| | | SystemLogController.InsertSystemLog(user.getUsername(),gettime(),content,"删除",ipAddress); |
| | | } |
| | | |
| | | @GetMapping("findTypeVoice") |