| | |
| | | * @param request |
| | | * @return |
| | | */ |
| | | @PostMapping("/get_sign_info/{version}") |
| | | @PostMapping("/get_signOrVisit_info/{version}") |
| | | @ApiVersion(1) |
| | | public String getSignInfo(HttpServletRequest request){ |
| | | public String getSignOrVisitInfo(HttpServletRequest request){ |
| | | |
| | | FieldSetEntity fse = null; |
| | | Object bean = request.getAttribute(CoreConst.API_POST_REQUEST_DATA); |
| | |
| | | if (bean == null || fse == null) { |
| | | return this.error(com.product.admin.config.SystemCode.SYSTEM_FORM_NODATA.getValue(), com.product.admin.config.SystemCode.SYSTEM_FORM_NODATA.getText()); |
| | | } |
| | | HashMap signInfo = conferenceManagerService.getSignInfo(fse); |
| | | HashMap signInfo = conferenceManagerService.getSignOrVisitInfo(fse); |
| | | return OK(signInfo); |
| | | |
| | | } |