Content type 'application/octet-stream' not supported for bodyType=boolean",
@PostMapping("upload") public Result add( @RequestPart(value = "startTime") String startTime, @RequestPart(value = "id") String id, @RequestPart(value = "priority") boolean priority, @RequestPart(value = "file") FilePart filePart) { return service.upload(filePart, startTime, Long.parseLong(id), priority); }
@RequestPart 只支持String类型