excel 对象数据校验 @param excelList @param clazz @return
(List<?> excelList, Class<?> clazz)
| 245 | * @return |
| 246 | */ |
| 247 | public static List<String> excelCheck(List<?> excelList, Class<?> clazz) { |
| 248 | List<String> errList = excelCheckObj(excelList, clazz); |
| 249 | return errList; |
| 250 | } |
| 251 | |
| 252 | |
| 253 | /** |
nothing calls this directly
no test coverage detected