spring-boot-starter-easyexcel 姓名 年龄 张三 35 @PostMapping("excel") public List<Person> excel(@RequestExcel List<Person> people) { return people; } @Data public class Person { @ExcelProperty("姓名") private String name; @ExcelProperty("年龄") private String age; }