Commit 1ca2b4b7 authored by hongguangwu's avatar hongguangwu

换个顺序

parent 6299dad8
......@@ -244,16 +244,16 @@ public class SalaryAccountUtil implements Serializable {
saiList.add(sai);
} else {
attr = field.getAnnotation(ExcelAttribute.class);
error = validateUtil(cellValueStr, attr, (i + 2));
if (null != error) {
errorList.add(new ErrorMessage((i + 2), error));
continue;
}
fieldType = field.getType();
if (fieldType == null) {
continue;
}
setFields(field, cellValueStr, attr, fieldType, entity);
error = validateUtil(cellValueStr, attr, (i + 2));
if (null != error) {
errorList.add(new ErrorMessage((i + 2), error));
continue;
}
}
}
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment