|
@@ -83,6 +83,7 @@ public class OpenApiController {
|
|
|
@RequestMapping(value = "/semester_edit", method = RequestMethod.POST)
|
|
|
@Aac(auth = BOOL.FALSE)
|
|
|
public Result semesterEdit(@ApiParam(value = "接收学期数据信息", required = true) @RequestBody String result) throws IOException, IllegalAccessException {
|
|
|
+ log.info("result : " + result);
|
|
|
Optional.ofNullable(result).orElseThrow(() -> ExceptionResultEnum.PARAMS_ERROR.exception("数据为空"));
|
|
|
String decodeJson = URLDecoder.decode(result, SystemConstant.CHARSET_NAME);
|
|
|
log.info("semesterEdit进来了,result:{}", decodeJson);
|