杜洪波
2025-10-16 1614f88b7feb3be9451a6698875715365f09ae83
src/main/java/com/product/administration/controller/ConferenceManagerController.java
@@ -494,7 +494,7 @@
     * @param request
     * @return
     */
    @PostMapping("/get_sign_or_visit_info/{version}")
    @PostMapping("/list-meeting-minute/{version}")
    @ApiVersion(1)
    public String listMeetingMinute(HttpServletRequest request) {
       try {
@@ -513,6 +513,31 @@
            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());
        }
   }
    /**
     * 发送消息