fix(demo): 导出测试单表列表 测试 排除的列字段名称集合

This commit is contained in:
insist 2024-12-21 16:27:43 +08:00
parent fb31eea82b
commit c526248465

View File

@ -92,7 +92,7 @@ public class TestDemoController extends BaseController {
// for (TestDemoVo vo : list) {
// vo.setId(1234567891234567893L);
// }
ExcelUtil.exportExcel(list,List.of("用户id"), "测试单表", TestDemoVo.class, response);
ExcelUtil.exportExcel(list,List.of("userId"), "测试单表", TestDemoVo.class, response);
}
/**