| | |
| | | * @param request |
| | | * @return |
| | | */ |
| | | @PostMapping("/get_sign_or_visit_info/{version}") |
| | | @PostMapping("/list-meeting-minute/{version}") |
| | | @ApiVersion(1) |
| | | public String listMeetingMinute(HttpServletRequest request) { |
| | | try { |
| | |
| | | return this.error(SystemCode.CONFERENCE_APPLY_FIND_FIAL.getValue(), SystemCode.CONFERENCE_APPLY_FIND_FIAL.getText() + e.getMessage()); |
| | | } |
| | | } |
| | | |
| | | /** |
| | | * 获取会议纪要列表 |
| | | * @param request |
| | | * @return |
| | | */ |
| | | @PostMapping("/find-meeting-minute/{version}") |
| | | @ApiVersion(1) |
| | | public String findMeetingMinute(HttpServletRequest request) { |
| | | try { |
| | | FieldSetEntity fse = BaseUtil.getFieldSetEntity(request); |
| | | // 判断分页参数是否正常 |
| | | if (StringUtils.isEmpty(fse.getString(CmnConst.UUID)) |
| | | && StringUtils.isEmpty(fse.getString("meeting_uuid"))) { |
| | | return this.error(SystemCode.SYSTEM_FORM_COUNT.getValue(), SystemCode.SYSTEM_FORM_COUNT.getText()); |
| | | } |
| | | return OK_List(conferenceManagerService.findMeetingMinute(fse)); |
| | | } catch (BaseException e) { |
| | | e.printStackTrace(); |
| | | return this.error(e.getCode(), e.getMessage()); |
| | | } catch (Exception e) { |
| | | e.printStackTrace(); |
| | | return this.error(SystemCode.CONFERENCE_APPLY_FIND_FIAL.getValue(), SystemCode.CONFERENCE_APPLY_FIND_FIAL.getText() + e.getMessage()); |
| | | } |
| | | } |
| | | |
| | | /** |
| | | * 发送消息 |