提交 16cdb51f 作者: 洪东保

debug

父级 6bec2b7a
...@@ -92,10 +92,10 @@ public class MeetingInfoController { ...@@ -92,10 +92,10 @@ public class MeetingInfoController {
@PostMapping("/detail") @PostMapping("/detail")
public R detail(@RequestBody MeetingInfoVO vo) { public R detail(@RequestBody MeetingInfoVO vo) {
RobotSecurityUser user = SecurityUtil.getUser(); RobotSecurityUser user = SecurityUtil.getUser();
MeetingInfo meetingInfo = meetingInfoService.getById(vo.getId());
BeanUtils.copyProperties(meetingInfo, vo);
vo.setUserId(user.getId()); vo.setUserId(user.getId());
vo.setApplicationId(permissionApplicationId); vo.setApplicationId(permissionApplicationId);
MeetingInfo meetingInfo = meetingInfoService.getById(vo.getId());
BeanUtils.copyProperties(meetingInfo,vo);
String recordXml = vo.getRecordXml(); String recordXml = vo.getRecordXml();
String recordContent = vo.getRecordContent(); String recordContent = vo.getRecordContent();
try { try {
...@@ -107,13 +107,6 @@ public class MeetingInfoController { ...@@ -107,13 +107,6 @@ public class MeetingInfoController {
} }
} catch (Exception e) { } catch (Exception e) {
e.printStackTrace(); e.printStackTrace();
// try(InputStream is = minioUtils.getFile(recordXml)){
// byte[] bytes = IOUtils.toByteArray(is);
// String json = convertXmlToJSON(new String(bytes));
// vo.setRecordJson(json);
// }catch (Exception ex){
// e.printStackTrace();
// }
} }
try { try {
if(StringUtils.isNotEmpty(recordContent)){ if(StringUtils.isNotEmpty(recordContent)){
......
Markdown 格式
0%
您添加了 0 到此讨论。请谨慎行事。
请先完成此评论的编辑!
注册 或者 后发表评论