I face a problem when I use jxls to import excel.
There is my java object:
1.Object:CheckMainPoiShow
public class CheckMainPoiShow{
private String name;
private List<CheckPoiCounttable> counttables;
}2.Object:CheckPoiCounttable
public class CheckPoiCounttable{
private String id;
private String area;
private private List<CheckPoiCounttableSon> counttablessons;
}3.Object:CheckPoiCounttableSon
public class CheckPoiCounttableSon{
private String aCount;
private String bCount;
private String cCount;
}There is my excel:
| id | area | aCount | bCount | cCount | aCount | bCount | cCount | aCount | bCount | cCount |
| 1 | 1 | a | a | a | b | b | b | c | c | c |
| 2 | 2 | d | d | d | e | e | e | f | f | f |
| 3 | 3 | g | g | g | h | h | h | i | i | i |
How should I define my transfer.xml
Thanks for all the helps.

Help

